WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1Code for a table Empty Code for a table Thu Mar 18, 2010 12:37 pm

Jake

Jake
Registered Member
Registered Member
I saw that you helped a guy here with his table code: http://www.webartzforum.com/html-hyper-text-markup-language-f5/do-you-know-code-for-a-table-t77.htm?highlight=code
I need something simalar to that but to look like this really:

Code for a table Snapshot2010-03-1800-37-57

But not as ugly at this. ^ Anyawys thanks for your time Smile

2Code for a table Empty Re: Code for a table Thu Mar 18, 2010 6:12 pm

waqas_ali

waqas_ali
Registered Member
Registered Member
Table?

http://www.indian.forumotion.com

3Code for a table Empty Re: Code for a table Thu Mar 18, 2010 7:55 pm

Fred100

Fred100
Registered Member
Registered Member
Waqas , please try helping next time Razz
and Jake
I sorta get what you mean.
is the table something like this?
>>IMAGE<< TextTextText
Code:
[table border="1"; width="300"]
[tr][td] >>IMAGE<< [/td][td]Text[/td]
[td]Text[/td]
[td]Text[/td]
[/table]
IMAGE* - The image illustrated in the pic you gave .
2* - The Text Illustrated in that pic of yours.

http://www.art-castle.biz/forum.htm

4Code for a table Empty Re: Code for a table Thu Mar 18, 2010 9:12 pm

Krazy


Registered Member
Registered Member
Fred, Thats what I have to. I just can't get it to stretch out and have more height. Ugh...

5Code for a table Empty Re: Code for a table Thu Mar 18, 2010 9:23 pm

Fred100

Fred100
Registered Member
Registered Member
That's it?
Can I have the image please?
And I thought this question was of jake Razz
Is this some sort of double account stuff? lol
And yeah , can I have the image?

http://www.art-castle.biz/forum.htm

6Code for a table Empty Re: Code for a table Thu Mar 18, 2010 9:35 pm

ankillien

ankillien
Administrator
Administrator
Hi Jake,

Here is the code for table you want...

Code:
<table celpadding="5" valign="top" width="500" border="1" cellspacing="5">
<tbody><tr>
<td rowspan="4" width="50%">
<img src="IMG URL HERE" />
</td>
</tr>
<tr height="50"><td>TEXT</td></tr>
<tr height="50"><td>TEXT</td></tr>
<tr height="50"><td>TEXT</td></tr>

</tbody></table>

7Code for a table Empty Re: Code for a table Thu Mar 18, 2010 9:43 pm

Krazy


Registered Member
Registered Member
I mean, thats the table I came up with. I'm trying to figure it out where you can stretch it out more like his design.

Code for a table 18643339Warning System:The Offences You Have Committed:Spamming, Hijacking Topics & Flamming

Like that? Thats what I have so far.


Edit:

Ankillien, Thats HTML right?

8Code for a table Empty Re: Code for a table Thu Mar 18, 2010 9:55 pm

Reave

Reave
Registered Member
Registered Member
Left SideTop Right
Middle Right
Bottom Right

Code:
[table border="1" width="200"]
[tr]
[td rowspan="3"]Left Side[/td]
[td]Top Right[/td][/tr]
[tr][td]Middle Right[/td][/tr]
[tr][td]Bottom Right[/td][/tr]
[/table]

http://ectos.darkbb.com/

9Code for a table Empty Re: Code for a table Thu Mar 18, 2010 10:48 pm

Jake

Jake
Registered Member
Registered Member
ankillien wrote:Hi Jake,

Here is the code for table you want...

Code:
<table celpadding="5" valign="top" width="500" border="1" cellspacing="5">
<tbody><tr>
<td rowspan="4" width="50%">
<img src="IMG URL HERE" />
</td>
</tr>
<tr height="50"><td>TEXT</td></tr>
<tr height="50"><td>TEXT</td></tr>
<tr height="50"><td>TEXT</td></tr>

</tbody></table>

reave wrote:
Left SideTop Right
Middle Right
Bottom Right

Code:
[table border="1" width="200"]
[tr]
[td rowspan="3"]Left Side[/td]
[td]Top Right[/td][/tr]
[tr][td]Middle Right[/td][/tr]
[tr][td]Bottom Right[/td][/tr]
[/table]

Thanks everybody for your help but ankillon's and reaves match the one I wanted. The only question I have left is how do I change the size and background color? I'm not very good at HTML pale

10Code for a table Empty Re: Code for a table Fri Mar 19, 2010 12:13 am

Reave

Reave
Registered Member
Registered Member
Here is a better example. The bgcolor is the background for the cell. I put it in every cell to show you. Just remove it if you don't want color in that cell. Also the font is colored. To change the height and width just look for the tags width="500" and height="200". You can also change the other cells width if you would like. Hope this helps.

Code:

<table celpadding="5" bgcolor="black" valign="top" width="500" height="200" border="1" cellspacing="5">
<tbody>
<tr><td rowspan="4" align="center" bgcolor="yellow" width="50%"><img src="http://i40.tinypic.com/20qjgao.png"></a></td>
</tr>
<tr height="50%" align="center" bgcolor="orange"><td><FONT color="red">Warning System:</FONT></td>
</tr>
<tr height="50%" align="center" bgcolor="LightSalmon"><td><FONT color="green">The Offences You Have Committed:</FONT></td>
</tr>
<tr height="50%" align="center" bgcolor="lime"><td><FONT color="blue">Spamming, Hijacking Topics & Flamming</FONT></td>
</tr>
</tbody></table>

http://ectos.darkbb.com/

11Code for a table Empty Re: Code for a table Fri Mar 19, 2010 1:53 am

Jake

Jake
Registered Member
Registered Member
reave wrote:Here is a better example. The bgcolor is the background for the cell. I put it in every cell to show you. Just remove it if you don't want color in that cell. Also the font is colored. To change the height and width just look for the tags width="500" and height="200". You can also change the other cells width if you would like. Hope this helps.

Code:

<table celpadding="5" bgcolor="black" valign="top" width="500" height="200" border="1" cellspacing="5">
<tbody>
<tr><td rowspan="4" align="center" bgcolor="yellow" width="50%"><img src="http://i40.tinypic.com/20qjgao.png"></a></td>
</tr>
<tr height="50%" align="center" bgcolor="orange"><td><FONT color="red">Warning System:</FONT></td>
</tr>
<tr height="50%" align="center" bgcolor="LightSalmon"><td><FONT color="green">The Offences You Have Committed:</FONT></td>
</tr>
<tr height="50%" align="center" bgcolor="lime"><td><FONT color="blue">Spamming, Hijacking Topics & Flamming</FONT></td>
</tr>
</tbody></table>

This is really awesome! Thanks. Except the only wrong with it is that the height doesn't change. I even changed the height to 9000 to see if it would change it but it doesn't.

12Code for a table Empty Re: Code for a table Sat Mar 20, 2010 2:30 am

Sanket

Sanket
Administrator
Administrator
It does actually change, by the way why do you want to change it to 9000?

http://www.webartzforum.com

13Code for a table Empty Re: Code for a table Sat Mar 20, 2010 10:45 am

Jake

Jake
Registered Member
Registered Member
Oh no it wasn't working so I was thinking that it might of changed so I tried to change it to 9000 to see if it really was changing but it wasn't. Maybe I didn't copy the whole code? Oh well thanks for checking.

14Code for a table Empty Re: Code for a table Sat Mar 20, 2010 11:08 am

Sanket

Sanket
Administrator
Administrator
Locked | Solved

http://www.webartzforum.com

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

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