Thread: Font Size problem next to table
Results 1 to 12 of 12
Related
-
Font size with in Text box Forum: HTML Forum
Replies: 1 -
Font Size/Font Face Forum: CSS Forum
Replies: 4 -
Font Size/Font Face Forum: HTML Forum
Replies: 2 -
font size Forum: HTML Forum
Replies: 2 -
font size in a table Forum: HTML Forum
Replies: 1
-
03-06-2004, 06:01 PM #1
Font Size problem next to table
hi, I know html alright and was having this font size problem that I cant get rid of, I am building a phpnuke website for my clan, www.1staxis.com, but I cant get the font size changed above my table, here is my code, the "Ranks" part will not get any bigger,
<center><font size=+3><font color=green>Ranks</center>
<br>
<center><TABLE BORDER WIDTH="100%"><TABLE BORDER="0">
<TR>
<TH>Abbreviation</TH>
<TH>German</TH>
<TH>Sign</TH>
</TR>
<TR>
<TD ALIGN=left>Gen.</TD>
<TD ALIGN=left>General <I>(General)</TD>
<TD ALIGN=center><img SRC="/images/general.gif" ALT="General" WIDTH="120" HEIGHT="75"></TD>
</TR>
<TR>
<TD ALIGN=left>Maj.</TD>
<TD ALIGN=left>Major <I>(Major)</I></TD>
<TD ALIGN=center><img SRC="/images/major.gif" ALT="Major" WIDTH="120" HEIGHT="75"></TD>
</TR>
<TR>
<TD ALIGN=left>Hptm</TD>
<TD ALIGN=left>Hauptmann <I>(Captain)</I></TD>
<TD ALIGN=center><img SRC="/images/hauptmann.gif" ALT="Hauptmann" WIDTH="120" HEIGHT="75"></TD>
</TR>
<TR>
<TD ALIGN=left>Oblt.</TD>
<TD ALIGN=left>Oberleutnant <I>(Lieutenant)</I></TD>
<TD ALIGN=center><img SRC="/images/oberleutnant.gif" ALT="Oberleutnant" WIDTH="120" HEIGHT="75"></TD>
</TR>
<TR>
<TD ALIGN=left>Lt.</TD>
<TD ALIGN=left>Leutnant <I>(2nd Lieutennant)</I></TD>
<TD ALIGN=center><img SRC="/images/leutnant.gif" ALT="Leutnant" WIDTH="120" HEIGHT="75"></TD>
</TR>
<TR>
<TD ALIGN=left>Fw.</TD>
<TD ALIGN=left>Feldwebel <I>(Sergeant)</I></TD>
<TD ALIGN=center><img SRC="/images/feldwebel.gif" ALT="Feldwebel" WIDTH="120" HEIGHT="75"></TD>
</TR>
<TR>
<TD ALIGN=left>Uo. </TD>
<TD ALIGN=left>Unteroffizier <I>(Corporal)</I></TD>
<TD ALIGN=center><img SRC="/images/unteroffizier.gif" ALT="Unteroffizier" WIDTH="120" HEIGHT="75"></TD>
</TR>
<TR>
<TD ALIGN=left>(none) </TD>
<TD ALIGN=left>Schutze <I>(Private 1st Class)</I></TD>
<TD ALIGN=center><img SRC="/images/schutze.gif" ALT="Schutze" WIDTH="120" HEIGHT="75"></TD>
</TR>
</TABLE>
</center>
Can anyone help?
-
03-06-2004, 09:26 PM #2
try changing
HTML Code:<center><font size=+3><font color=green>Ranks</center>
HTML Code:<center><font size=3 color=green>Ranks</font></center>
-
03-06-2004, 10:59 PM #3
-
03-06-2004, 11:14 PM #4
Can you give me a link to the test page.
thx
Dave
-
03-06-2004, 11:49 PM #5
the page where I have it up is www.1staxis.com, head over to the ranks page in the module and u can see it, Its the small green title "ranks". I can not for the life of me change the size lol
-
03-07-2004, 12:40 AM #6
-
03-07-2004, 12:44 AM #7
-
03-07-2004, 12:46 AM #8
I see the tags are not closed in the proper order
<center><font> should close </font></center> not </center></font>
I doubt this is the problem, but The code needs to be cleaned up. Try ro run it through the HTML validator.
Dave
-
03-07-2004, 12:47 AM #9
-
03-08-2004, 09:28 PM #10
-
03-09-2004, 03:32 AM #11
Your site still fails validation
http://validator.w3.org/check?uri=http%3A%2F%2Fwww.1staxis.com%2F&charset=%28detect+automatically%29&doctype=Inline&verbose=1
Try sorting out the major issues in there first.If one of our members helps you, please click theicon to add to their reputation!
No support via email or private message - use the forums!
Before you ask, have you Searched?
-
03-09-2004, 08:37 AM #12
I am going from memory here so I may be wrong.
If I recall, you are also using CSS, but your tables are not formatted properly. Fix the table code and we can work on the font/css issue. Other errors in validation(alt attributes, scripts etc.) you can ignore for now.
Dave