简体   繁体   中英

Deep Customization of a Wordpress Theme CSS

I have a test site where i am implementing a wordpress theme named Oxygen.Now after i have changed the background image of the theme every font color and styles like hover etc need to be changed.

The problem is even if i use custom CSS, it does not reflect any change. In some other cases it shows some changes. A example is when i used hover background in the CSS it changed but when i used hover color it did not reflect any change.

My problem is similar to this

First link

My sites link is this LINK

I know how to use firebug to identify a particular CSS line but i do not seem to find the area at all. My major problem is Hover Color,Menu Color,Font Color.

Thanks in Advance.

It working fine. I tried to change the color of Menu when hover. and its working. Try this:

<style type="text/css">
    #menu-primary ul li a:hover, #menu-primary li ul li a:hover {
        color: #FFC0CB !important;
    }
</style>

For example paste this code in header.php and see the changes.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM