Sorry, mail program messup on the previous try...
-------------------------------

From: Lst Recv <[EMAIL PROTECTED]>

>Thanks - I changed it, but it didn't solve any of the bugs...

Let's see.....

The first "bug" you might want to deal with is your incorrectly written 
selector 

#top img.dude {
 display: block;
 width: 25%;
 float: left;
}

You have the "dude" in your HTML as an ID, not a class. If you write the 
selector as - 

#top img#dude {/* styles */} 

you might have a little more success than you have had to this point. This is 
the kind of stuff we can check out when there are URLs provided.....

Secondly, you may be having further browser compatibility problems because you 
have them all in "quirks" mode due to an incomplete doctype on your page. See 
the following [1] for information on this subject (page 2 has a list) as well 
as a page from the W3C [2] for another list of them. Another thing we can check 
when provided with a URL...

Hope that helps,

~holly 

[1] http://www.communitymx.com/abstract.cfm?cid=E2F258C46D285FEE
[2] http://www.w3.org/QA/2002/04/valid-dtd-list.html  
 
                   
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to