Hi,
I am in the process of building my first css page, but I've got a problem.
URL
The Menu is supposed to be align=right, and not underlined! I don't know how this came, but i don't want it underlined.
Thanks
| SitePoint Sponsor |
Hi,
I am in the process of building my first css page, but I've got a problem.
URL
The Menu is supposed to be align=right, and not underlined! I don't know how this came, but i don't want it underlined.
Thanks


You really shouldn't use a menu within a <h1> title. Your H1 has text-align:right, so that's probably why it's doing that.
You're also mixing CSS with HTML aligns, so it's going to get a little confusing! Scrap the HTML ones and do it all in CSS.
Optimalworks Ltd web design and IT consultancy, Devon UK
http://www.optimalworks.net/
We produce elegant, standards-based, accessible websites:
Valid XHTML, CSS, JavaScript, DOM scripting, AJAX, PHP, .NET
thanks for the reply,
im quite new to css, sorry if i ask so much but should i do it like this?
a {color: #ffffff;}
a:visited {color:#ffffff;}
a:hover {color: #000066;}
a:active { color:#000000;}
a:text-decoration: none;
or
a {color: #ffffff;}
a:visited {color:#ffffff;}
a:hover {color: #000066;}
a:active { color:#000000;}
text-decoration: none;
cheers
i dont think i could manage doing everything in css only. the h1 did the trickits alinged to left now, but the bar became smaller..

Bookmarks