Log in

View Full Version : css fix


Chadi
08-26-2007, 08:01 PM
Ran w3c validation and it gave me this error

URI : http://www.talkjesus.com/

865
Value Error : width (http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-width) Too many values or values are not recognized : 100 cellspacing

http://jigsaw.w3.org/css-validator/v...lkjesus.com%2F (http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.talkjesus.com%2F)

I cannot trace this at all. Can someone please tell me what the exact error is and how to trace this? The only thing I see regarding "100" is this

#categories { min-width : 12em;
max-width : 100%;

}

Lynne
08-26-2007, 08:37 PM
Probably refering to this line in your source code:

<strong>Why Join Talk Jesus Forums?</strong>
<br />
<br />
<table style="width: 100 cellspacing="3" cellpadding="3">
That table line makes no sense.

Chadi
08-26-2007, 09:34 PM
Does it make sense that the CSS validator shows it without the % symbol, yet my phrase shows it with the % symbol?

<table style="width: 100%" cellspacing="3" cellpadding="3">

Lynne
08-26-2007, 10:19 PM
I looked in your source code. It doesn't have the % sign. But, besides that, it isn't valid html with the "style=" written in there. It should be:

<table width="100%" cellspacing="3" cellpadding="3">