js111
js111

Reputation: 1314

Change Navigation Hover color

URL: http://www.ilandeistudio.com/store/

How can I change the hover color of the second level navigation categories "Outdoor" "living" .... ect?

I have looked through the CSS and cant find the appropriate .hover class.. Also looked through the files for a possible JPG that I could just photoshop, no luck.

Thanks

Upvotes: 0

Views: 411

Answers (2)

Tak
Tak

Reputation: 11742

In Chrome I right-clicked the link and selected "Inspect Element". From there I can see all the CSS applied to the element. By unticking this one, the hover effect changed back to the default pink, so this is the line:

.s_secondary_color, a:hover, #categories > ul > li > a, #footer_categories h2, .pagination a, #view_mode .s_selected a {
color: #666;
}

Lines 43-51 of the HTML page.

Upvotes: 3

Daniel Bingham
Daniel Bingham

Reputation: 12924

They are links, it's probably not a .hover class but an a:hover. Look for that.

Upvotes: 2

Related Questions