Today's Posts Follow Us On Twitter! TFL Members on Twitter  
Forum search: Advanced Search  
Navigation
Marketplace
  Members Login:
Lost password?
  Forum Statistics:
Forum Members: 24,254
Total Threads: 80,792
Total Posts: 566,471
There are 1202 users currently browsing (tf).
 
  Our Partners:
 
  TalkFreelance     Design and Development     HTML/XHTML/DHTML/CSS :

Is your site W3C compliant?

Thread title: Is your site W3C compliant?
Closed Thread  
Page 3 of 4 < 1 2 3 4 >
    Thread tools Search this thread Display Modes  
05-06-2005, 09:14 PM
#21
xdoomx is offline xdoomx
Status: Member
Join date: Feb 2005
Location: Quebec, Canada
Expertise:
Software:
 
Posts: 441
iTrader: 1 / 100%
 

xdoomx is on a distinguished road

Send a message via AIM to xdoomx Send a message via MSN to xdoomx

  Old

SleekSkins isn't... mainly because of our JS fading buttons (3 out of the 4 errors).

The original layout without the JS rollovers was W3C compliant though.

http://validator.w3.org/check?uri=www.sleekskins.com

05-07-2005, 05:50 AM
#22
Yuneek is offline Yuneek
Status: I'm new around here
Join date: May 2005
Location: Florida
Expertise:
Software:
 
Posts: 17
iTrader: 0 / 0%
 

Yuneek is on a distinguished road

  Old

I don't have a site right now, but all of my sites have were XHTML Strict valid with valid CSS.

Yuneek

05-07-2005, 12:53 PM
#23
Aphex is offline Aphex
Aphex's Avatar
Status: Member
Join date: Aug 2004
Location: United States
Expertise:
Software:
 
Posts: 244
iTrader: 0 / 0%
 

Aphex is on a distinguished road

Send a message via AIM to Aphex Send a message via MSN to Aphex

  Old

Originally Posted by flez
It's HTML, only read by IE, conditional comments:
http://virtuelvis.com/archives/2004/02/css-ie-only
I've never seen that before, thats really neat. I'd also like to mention the PNG behaviors on that page - thats worth looking at. IE sucks with PNG.

05-07-2005, 03:25 PM
#24
seen.to is offline seen.to
seen.to's Avatar
Status: unusual suspect ™
Join date: Feb 2005
Location: Lancaster, PA from London UK
Expertise:
Software:
 
Posts: 1,814
iTrader: 0 / 0%
 

seen.to is on a distinguished road

  Old

Everything I've done since last October does... everything before that probably not.

05-07-2005, 03:45 PM
#25
Adam is offline Adam
Adam's Avatar
Status: Member
Join date: Jan 2005
Location:
Expertise:
Software:
 
Posts: 433
iTrader: 0 / 0%
 

Adam is on a distinguished road

  Old

Originally Posted by xdoomx
SleekSkins isn't... mainly because of our JS fading buttons (3 out of the 4 errors).

The original layout without the JS rollovers was W3C compliant though.

http://validator.w3.org/check?uri=www.sleekskins.com
that javascript error is actually pretty easy to fix

change

<script language="JavaScript">

to
<script type="text/javascript"

...img/button_home.gif" alt="Home" name="but1" class="imgFader" onmouseover="JSF

should be

...img/button_home.gif" alt="Home" id="but1" class="imgFader" onmouseover="JSF

05-07-2005, 05:36 PM
#26
xdoomx is offline xdoomx
Status: Member
Join date: Feb 2005
Location: Quebec, Canada
Expertise:
Software:
 
Posts: 441
iTrader: 1 / 100%
 

xdoomx is on a distinguished road

Send a message via AIM to xdoomx Send a message via MSN to xdoomx

  Old

Thanks Adam, I'll try this out and see if that fixes the errors!

05-07-2005, 07:09 PM
#27
Koobi is offline Koobi
Koobi's Avatar
Status: Member
Join date: Apr 2005
Location:
Expertise:
Software:
 
Posts: 312
iTrader: 0 / 0%
 

Koobi is on a distinguished road

  Old

Originally Posted by DesignsbyPam
Thanks again for the help! One more question then I'm off to give things a try.... what about backgrounds for a cell or table?

Pamela
You simple attach the style to the table/table cell

Example if inline styles
HTML Code:
<table>
    <tr>
        <td style="background: #fff url(images/image.png) repeat-x 0 0;">
            My text
        </td>
    </tr>
</table>
Or, if your table/cell has a class or id attached to it, simple add the background attribute to the CSS for that class/id or you can even attach the background attribute to the td tag within the CSS itself:

The HTML
HTML Code:
<table>
    <tr>
        <td class="myBg">
            My text
        </td>
    </tr>
</table>
The CSS:
Code:
.myBg
{
    background: #fff url(images/image.png) repeat-x 0 0;
}


Originally Posted by Aphex
I've never seen that before, thats really neat. I'd also like to mention the PNG behaviors on that page - thats worth looking at. IE sucks with PNG.
IE does suck with partial transparency on PNG's...I wish they would fix that already :/

05-08-2005, 12:47 AM
#28
DesignsbyPam is offline DesignsbyPam
Status: Junior Member
Join date: Apr 2005
Location: Central Florida
Expertise:
Software:
 
Posts: 40
iTrader: 0 / 0%
 

DesignsbyPam is on a distinguished road

Send a message via MSN to DesignsbyPam

  Old

Originally Posted by Koobi
You simple attach the style to the table/table cell

Example if inline styles...
Thanks so much! This is very helpful. Greatly appreciated

Pamela

05-12-2005, 04:13 PM
#29
plattopus is offline plattopus
Status: Junior Member
Join date: Dec 2004
Location: Melbourne, AU
Expertise:
Software:
 
Posts: 33
iTrader: 0 / 0%
 

plattopus is on a distinguished road

Send a message via MSN to plattopus

  Old

Yes, both XHTML 1.1 and CSS.

05-26-2005, 01:20 PM
#30
schroder is offline schroder
schroder's Avatar
Status: Member
Join date: Nov 2004
Location:
Expertise:
Software:
 
Posts: 159
iTrader: 0 / 0%
 

schroder is on a distinguished road

  Old

I'm glad to see so many people care about using valid code.

I was bummed to find out how many popular sites aren't:

msn.com - 22 errors
google.com - 47 errors
ebay.com - 199 errors and they didn't even bother setting a doctype.

A lot of the problems are pretty small and for now I don't think its that important. Sooner or later its going to become a problem though.

Closed Thread  
Page 3 of 4 < 1 2 3 4 >


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

  Posting Rules  
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump:
 
  Contains New Posts Forum Contains New Posts   Contains No New Posts Forum Contains No New Posts   A Closed Forum Forum is Closed