开发者

Change Navigation Hover color

开发者 https://www.devze.com 2023-03-18 10:20 出处:网络
URL: http://www.ilandeistudio.com/store/ How can I change the hover color of the second level navigation categories \"Outdoor\" \"living\" .... ect?

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 开发者_如何学JAVAand cant find the appropriate .hover class.. Also looked through the files for a possible JPG that I could just photoshop, no luck.

Thanks


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.


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

0

精彩评论

暂无评论...
验证码 换一张
取 消