The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

[HELP] Can someone make a tut on how to make tables on posts?

+2
Stephen-
Poser
6 posters

Go down

In progress [HELP] Can someone make a tut on how to make tables on posts?

Post by Poser November 1st 2011, 9:35 am

As my topic title says, how do I create tables on posts?
Can someone make a tut or just elaborate it here in my topic?
Poser
Poser
Helper
Helper

Male Posts : 413
Reputation : 43
Language : English, Filipino
Location : @ohmpawatt

http://maristpress.forumotion.com/

Back to top Go down

In progress Re: [HELP] Can someone make a tut on how to make tables on posts?

Post by Stephen- November 1st 2011, 9:54 am

What table ? you mean the forum templates ?
Stephen-
Stephen-
Hyperactive

Male Posts : 2542
Reputation : 326
Language :

Back to top Go down

In progress Re: [HELP] Can someone make a tut on how to make tables on posts?

Post by Nera. November 1st 2011, 10:05 am

Hi Jack,

This should help
https://help.forumotion.com/t87870-notice-using-css-and-table

The problem in making a tut for it is that every table is unique. User must know to customize it a bit, though it's nothing complicated.
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

In progress Re: [HELP] Can someone make a tut on how to make tables on posts?

Post by Poser November 1st 2011, 10:06 am

Wait.
Is the tutorial will result to this kind of table in a post>

Base wrote:
[HELP] Can someone make a tut on how to make tables on posts? ParcheminNon-Explicit Title: Hello, can you please change the title of your problem from something like “Help, Urgent, Few questions, Problems, SOS” to something more related to your query/problem.

Your changing the title to something related to the problem will help users who will use the search feature on this forum to solve a similar problem. This way, your problem will be a solution for someone else’s problem.

Please confirm with the requirement to get help from members as well as staff.
Members are advised to confirm with this requirement & avoid helping unless the title is changed.

Your co-operation will help us in making this forum efficient. Thank you.

Staff

[HELP] Can someone make a tut on how to make tables on posts? ParcheminDouble Posting:Posting consecutively is not tolerated unless separated by 24 hours since the last post. In future, please use the edit button. Wink
Poser
Poser
Helper
Helper

Male Posts : 413
Reputation : 43
Language : English, Filipino
Location : @ohmpawatt

http://maristpress.forumotion.com/

Back to top Go down

In progress Re: [HELP] Can someone make a tut on how to make tables on posts?

Post by Nera. November 1st 2011, 10:13 am

Code:
 [table style="padding: 3px; border: 1px dashed #0066ff; background: #e5f1f9; border-left: 4px solid #0066ff;"]
[tr]
[td][img]http://2img.net/i/fa/fdf/parchemin.png[/img][/td][td][font=Georgia][i][size=14][color=#0066ff]Double Posting:[/color][/size][/i][/font]
[/td]
[td]
[font=Georgia][i][color=#0066ff][b][color=green]Posting consecutively is not tolerated unless separated by 24 hours since the last post. In future, please use the edit button. ;)[/color][/b]
    [/color][/i][/font]
[/td]
[/tr][/table]


[HELP] Can someone make a tut on how to make tables on posts? ParcheminDouble Posting:Posting consecutively is not tolerated unless separated by 24 hours since the last post. In future, please use the edit button. Wink

No it wont. You need to customize it. There is no a unique explanation since every table is unique. Just take a look at the code of the table. Chnage the image in the code, border width & other things and you will see your table changing. That's what I ment when said you need to know a bit how to customize it. That table is goten from a simple BB table.

Code:
[table border="1"]
[tr]
[td]This is a simple table [/td]
[/tr]
[/table]

This is a simple table

And than CSS is added to make her apperance neet.

TR in the table is the tables row and TD is basiclly an other cell in that row, something that devides it.
Nera.
Nera.
Energetic

Female Posts : 7078
Reputation : 2017
Language : English
Location : -

Back to top Go down

In progress Re: [HELP] Can someone make a tut on how to make tables on posts?

Post by LGforum November 1st 2011, 4:12 pm

You use these BBcodes to make a table.

Code:

[table][tr][td]

table, obviously starts the table.
From then, you begin to build your rows, by using 'tr' (which stands for either table row or table right).

So if you want 2 rows, your code will look like this now
Code:

[table]
[tr]    row1      [/tr]
[tr]    row2      [/tr]
[/table]

Now in your rows you must put your columns. you use 'td' for that, which i think might stand for table down. So if you want 2 columns. You'll need to create these two columns in each of your rows. Like this:

Code:

[table]
[tr] [td]row1,column1[/td] [td]row1,column2[/td] [/tr]
[tr] [td]row2,column1[/td] [td]row2,column2[/td] [/tr]
[/table]

end result:
row1,column1 row1,column2
row2,column1 row2,column2

So there you have it. I hope that helps everyone.
Thats the best i can explain it.
LGforum
LGforum
Hyperactive

Male Posts : 2265
Reputation : 264
Language : English
Location : UK

Back to top Go down

In progress Re: [HELP] Can someone make a tut on how to make tables on posts?

Post by WHITESABBATH November 1st 2011, 5:05 pm

Here's a table i assembled together. border size/color,cellspacing can be changed. you can add additional columns by following the code sequence.


Code:
[color=#000000][table style="border: 5px solid #000000;" border="20" cellpadding="20" cellspacing="20" width=""][tr][td][center]#1 Title[/center]
[/td][td][center]#2 Title[/center]
[/td][td][center]#3 Title[/center]
[/td][td][center]#4 Title[/center]
[/td][/tr][tr][td][center]#1 image[/center]
[/td][td][center]#2 Image[/center]
[/td][td][center]#3 Image[/center]
[/td][td][center]#4 Image[/center]
[/td][/tr][tr][td][center]#1 Info[/center]
[/td][td][center]#2 info[/center]
[/td][td][center]#3 info[/center]
[/td][td][center]#4 info[/center]
[/td][/tr][/table][/color]

Example:
#1 Title
#2 Title
#3 Title
#4 Title
#1 image
#2 Image
#3 Image
#4 Image
#1 Info
#2 info
#3 info
#4 info



Example:
WHITESABBATH
[HELP] Can someone make a tut on how to make tables on posts? 4ac1cc55
My Sig


Last edited by WHITESABBATH on November 1st 2011, 5:27 pm; edited 3 times in total (Reason for editing : additional info)
WHITESABBATH
WHITESABBATH
Active Poster

Male Posts : 1198
Reputation : 119
Language : English, F-Bombs
Location : Chicago

Back to top Go down

In progress Re: [HELP] Can someone make a tut on how to make tables on posts?

Post by SLGray November 1st 2011, 5:07 pm

There is also a button in the text editor that will create the code for a table after you enter the row and column information.


[HELP] Can someone make a tut on how to make tables on posts? Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51463
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Back to top


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