• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

basic html help

ManBearPig

Diamond Member
how would i make this table sideways? like instead of upright i guess, so it goes along the page.

<TABLE BORDER="7" CELLPADDING="10">
<TR>
<TD> <h1>Item</h1></TD>
<TD><h1>Cost</h1></TD>
</TR>
<TR>
<TD> <img******="basketball.jpg"></TD>
<TD>$9.87</TD>
</TR>
<TR>
<TD><img******="nflfootball.jpg"></TD>
<TD>$11.39</TD>
</TR>
<TR>
<TD><img******="usasoccer.jpg"></TD>
<TD>$13.95</TD>
</TR>
</TABLE>

thanks!
 
You're making 4 rows, with 2 colums each, right? So to turn it on it's side, make 2 rows, with 4 columns each.

<TABLE BORDER="7" CELLPADDING="10">


<TR>
<TD><h1>Item</h1></TD>
<TD><img******="basketball.jpg"></TD>
<TD><img******="nflfootball.jpg"></TD>
<TD><img******="usasoccer.jpg"></TD>
</TR>

<TR>
<TD><h1>Cost</h1></TD>
<TD>$9.87</TD>
<TD>$11.39</TD>
<TD>$13.95</TD>
</TR>


</TABLE>
 
Originally posted by: Atheus
You're making 4 rows, with 2 colums each, right? So to turn it on it's side, make 2 rows, with 4 columns each.

<table border="7" cellpadding="10">

<tr>
<td><h1>Item</h1></td>
<td><img src="basketball.jpg"></td>
<td><img src="nflfootball.jpg"></td>
<td><img src="usasoccer.jpg"></td>
</tr>

<tr>
<td><h1>Cost</h1></td>
<td>$9.87</td>
<td>$11.39</td>
<td>$13.95</td>
</tr>

</table>

Fixed the filter garbage. 😉
 
thanks sooo much

err, how can i get the defualt text for links to not be blue? i need a color that would look good on a dark blue background, so something white would be good, but i dunno how.
 
i asked my teacher how to change the font and how to change the color of the links and she put this...any ideas wtf it means?

1) Yes, there is one point for the font. You can wasy find out face of the font from
Microsoft Word. The font tag is <font color = "" face = "" ... > </font> (just to remind
you).

2) To change the colors of the links assign your choice of colors to the
body tag attributes link, vlink and alink.
 
Originally posted by: Heen05
any ideas wtf it means?

WTF do you mean WTF does it mean? You don't understand any of it?

You can easy find out face of the font from Microsoft Word.

This means you need to know the name of the font in order to use it in HTML, and you can find this in word, just make a document and go through the fonts.

The font tag is <font color = "" face = "" ... > </font> (just to remind you).

This means you are expected to know what tags are and how to use them. If you do not get this bit you need to do some work.

2) To change the colors of the links assign your choice of colors to the
body tag attributes link, vlink and alink.

See above.
 
Back
Top