FM Design
Would you like to react to this message? Create an account in a few clicks or log in to continue.

IMPORTANT

FM Design is in read-only mode, please click here for more information.

Latest topics
» Forumactif Edge - Releases
by Ange Tuteur Tue 03 Sep 2019, 11:49

» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21

» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28

» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15

» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11

» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24

» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58

» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50

» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22

» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12

» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10

» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51

» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11

» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19

» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34

Recent Tutorials
Top posting users this month

Who is online?
In total there are 11 users online :: 0 Registered, 0 Hidden and 11 Guests :: 2 Bots

None

[ View the whole list ]


Most users ever online was 515 on Tue 14 Sep 2021, 15:24

[SOLVED] BBCodes used in designing tables

View previous topic View next topic Go down

Anonymous
Guest
Guest

PostGuest Sun 24 Apr 2016, 02:22

Alright, so I made this topic because I have been in much trouble when it comes to bbcodes for tables. I know that Forumotion has already this option that will let you make a table, but what my problem here is that I simply do not know the elements required to customize a table.

I have researched a lot in Google about this, but I am just so hopeless to learn from them since it doesn't make it work.

If, by chance, you have some spare time, would you mind sharing to me your knowledge about those bbcodes used in designing tables? I'd appreciate your help.
Anonymous
Guest
Guest

PostGuest Sun 24 Apr 2016, 03:00

I think you may find some info here to get you started. There are tons of possibilities and tons of codes to go on, depending on what you are looking for:

http://custom.simplemachines.org/mods/index.php?mod=2505 (you can't download the mods to your forum)
https://brivium.com/resources/advanced-table-bbcode.35/
http://www.teamopolis.com/tools/bbcode-table-generator.aspx

and you might want to search for old topics & posts @ help.forumotion.com . Just add some words to the search engine, like: table border for instance and read through the posts.
Anonymous
Guest
Guest

PostGuest Sun 24 Apr 2016, 03:35

Thanks to that but I am still in no hopes though. However, this is what I actually want to achieve. How is this coded through BBCode?

[SOLVED] BBCodes used in designing tables 11110
Wilson
Wilson

Gender : Unspecified
Age : 37
Posts : 868
Points : 4621
Reputation : 124
Language : Filipino and Engrish
Browser : Browser : Google Chrome Forum Version : Forum Version : phpBB3
http://generalaxis.forums.com.bz/

PostWilson Sun 24 Apr 2016, 03:43

Tables actually allows you to add classes on it, for example:

Code:
[table class="yourclassname"][tr][td][/td][/tr][/table]

You can style it with:
Code:
.postbody .content .yourclassname {
  /* YOUR STYLE HERE */
}
Anonymous
Guest
Guest

PostGuest Sun 24 Apr 2016, 03:45

JamesPH wrote:Thanks to that but I am still in no hopes though. However, this is what I actually want to achieve. How is this coded through BBCode?

[SOLVED] BBCodes used in designing tables 11110

by practicing a lot with style combinations Razz But seriously, why not create a picture and make it clickable using something like this:

Open in a new browser tab:
Code:
<a href="YOUR URL HERE" target="_blank" title="YOUR HOVER OVER MESSAGE HERE" onclick="window.open(this.href);return false;"><center><img src="YOUR PICTURE URL HERE"></center></a>

Open in the same browser tab:
Code:
<a href="YOUR URL HERE" target="" title="YOUR HOVER OVER MESSAGE HERE" onclick="window.open(this.href);return false;"><center><img src="YOUR PICTURE URL HERE"></center></a>
Anonymous
Guest
Guest

PostGuest Sun 24 Apr 2016, 04:12

@Samantha I'll try that one. Thanks.

Wilson wrote:
Code:
.postbody .content .yourclassname {
  /* YOUR STYLE HERE */
}

@Wilson Will I be using HTML tags for that?
Wilson
Wilson

Gender : Unspecified
Age : 37
Posts : 868
Points : 4621
Reputation : 124
Language : Filipino and Engrish
Browser : Browser : Google Chrome Forum Version : Forum Version : phpBB3
http://generalaxis.forums.com.bz/

PostWilson Sun 24 Apr 2016, 04:20

JamesPH wrote:@Wilson Will I be using HTML tags for that?

No. You'll be using CSS properties for that, such as:

Code:
 padding: 10px;
 border: 1px solid #fff;

This is how it would look like
Code:
.postbody .content .yourclassname {
 padding: 10px;
 border: 1px solid #fff;
}

Keep in mind that you can change the "yourclassname" to your choice.
Anonymous
Guest
Guest

PostGuest Sun 24 Apr 2016, 04:26

@Wilson

Ok I think that's easier (to look at). I'll be exploring this.
Wilson
Wilson

Gender : Unspecified
Age : 37
Posts : 868
Points : 4621
Reputation : 124
Language : Filipino and Engrish
Browser : Browser : Google Chrome Forum Version : Forum Version : phpBB3
http://generalaxis.forums.com.bz/

PostWilson Sun 24 Apr 2016, 04:29

@JamesPH, I can help you design your own table, just ask anytime.

Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12052
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Sun 24 Apr 2016, 11:13

JamesPH wrote:Thanks to that but I am still in no hopes though. However, this is what I actually want to achieve. How is this coded through BBCode?

[SOLVED] BBCodes used in designing tables 11110
If you want, I can provide you with a draft code that's similar, but not exact. Niko was the one who proposed the concept for these tables and I added my own little modifications to them which we agreed on.
Anonymous
Guest
Guest

PostGuest Sun 24 Apr 2016, 20:02

@Ange Tuteur thanks! I would love to. I will just modify it to my liking.
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12052
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Mon 25 Apr 2016, 13:45

Alright, add this to your CSS :
Code:
.tuto-header, .tuto-content, .tuto-footer {
  border-spacing:0;
  width:100%;
}

/* tuto header */
.tuto-header {
  color:#FFF;
  font-family:Arial, Verdana, Sans-serif;
  background:#69C;
  border:1px solid #69C;
  padding:3px;
  position:relative;
}

.tuto-logo, .tuto-type {
  width:150px;
  height:75px;
  text-align:center;
}

.tuto-title {
  font-size:22px;
  text-align:center;
}

.tuto-logo:after {
  text-rendering:auto;
  font:normal normal normal 48px/1 FontAwesome;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.announcement .tuto-logo:after { content:"\f0a1" }


.tuto-type:after {
  content:"Template";
  font-size:12px;
  font-weight:bold;
  color:#69C;
  background:#FFF;
  display:inline-block;
  padding:3px 9px;
  position:absolute;
  top:0;
  right:0px;
}

.announcement .tuto-type:after { content:"Announcement" }


/* tuto content */
.tuto-content {
  background:#FFF;
  border:1px solid #69C;
  border-bottom:1px solid #69C;
  padding:3px;
}


/* tuto footer */
.tuto-footer {
  background:#FFF;
  border:1px solid #69C;
  border-top:none;
  position:relative;
}

.tuto-credit {
  text-align:justify;
  vertical-align:middle;
  padding:10px 6px;
}

.tuto-brand {
  width:120px;
  height:60px;
  vertical-align:bottom;
  text-align:center;
  padding:6px 0;
}
You can change the icon for the template by modifying this part :
Code:
.announcement .tuto-logo:after { content:"\f0a1" }
( It's using font awesome : https://fortawesome.github.io/Font-Awesome/cheatsheet/ )

and you can modify the tag texts ( Announcement ) too :
Code:
.announcement .tuto-type:after { content:"Announcement" }


Lastly use this bbcode for posting :
Code:
[table class="tuto-header announcement"][tr]
[td class="tuto-logo"][/td]
[td class="tuto-title"]Announcement title[/td]
[td class="tuto-type"][/td]
[/tr][/table]
[table class="tuto-content"][tr][td]

Content here

[/td][/tr][/table]
[table class="tuto-footer"][tr][td class="tuto-credit"]Closing[/td][td class="tuto-brand"]Footer Brand[/td][/tr][/table]
Anonymous
Guest
Guest

PostGuest Mon 25 Apr 2016, 18:25

Thanks @Ange Tuteur !
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12052
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Mon 25 Apr 2016, 19:20

No problem. Wink
Sponsored content

PostSponsored content

View previous topic View next topic Back to top

Create an account or log in to leave a reply

You need to be a member in order to leave a reply.

Create an account

Join our community by creating a new account. It's easy!


Create a new account

Log in

Already have an account? No problem, log in here.


Log in

 
Permissions in this forum:
You cannot reply to topics in this forum