Posts: 8,936
Name: Tim Daily
Location: Apex, NC, US, Sol 3
|
Where you listed in your original post:
ul.y { width:150px; border:2px solid #9d9da1; background: #82B4D7; list-style:none; }
drop the list-style rule.
You should really check your HTML; there are numerous validation errors, most of which are coming from the use of deprecated code like font-face, bgcolor, marginwidth, etc. Those things are styled with CSS as well, not in the HTML. You're also putting naming multiple things with the same class name, which can mess with your syntax. I'd also strongly suggest dropping the table structure; there's nothing here you can't put together with more up-to-date coding.
tim 
Last edited by serandfae; 10-14-2008 at 01:06 AM..
|