Click to See Complete Forum and Search --> : Hi


DanUK
11-18-2003, 04:59 PM
Hi there.

Sorry to post again.
I'm getting these errors from validator.w3.org:


Line 29, column 15: there is no attribute "BACKGROUND" (explain...).
<td background="images/pl_bdr_3.gif" class="gensmall" width="100%"><img src="ima
^
Line 89, column 26: there is no attribute "HEIGHT" (explain...).
<table width="150" height="23" border="0" cellpadding="0" cellspacing="0" backgr
^
Line 89, column 85: there is no attribute "BACKGROUND" (explain...).
...dding="0" cellspacing="0" background="images/block-title.gif">


Those lines are:

Line 29:

29: <td background="images/pl_bdr_3.gif" class="gensmall" width="100%"><img src="images/spacer.gif" width="200" height="12" alt="theme image" /></td>

Line 89:

89: <table width="150" height="23" border="0" cellpadding="0" cellspacing="0" background="images/block-title.gif">

How do I get rid of them? I tried with CSS, but the images wouldn't load..which mucked up the whole design! Thanks if you can help.

fredmv
11-18-2003, 05:06 PM
<td style="background-image: url(images/pl_bdr_3.gif);" class="gensmall" width="100%"><img src="images/spacer.gif" style="width: 200px; height: 12px;" alt="theme image" /></td>

<table style="border: 0px; width: 150px; height: 23px; background-image: url(images/block-title.gif);" cellpadding="0" cellspacing="0">

DanUK
11-18-2003, 06:02 PM
Absolutely brilliant, thank you! :)