PDA

View Full Version : navigation links.. question.



pghdesigner
23 Apr 2010, 07:16 AM
I have navigation inside a div. The navigation div is held in my external css. My external css has a: link and it's orange and I want that for the site. However it's messing with my navigation. I don't want there to be a link color at all because my navigation are all images. It looks tacky.

Can I remove the link color in my navigation div somehow? I have no idea how to do it.

<CrGeary.com/>
23 Apr 2010, 08:51 AM
You cant give text "no color", but you can hide it, its should be as simple as:



#navigation-wrapper a {
text-indent:-9999px;
overflow:hidden;
}


obviously, your navigation div is probably not called #navigation-wrapper, but you know.