MH Magazine Lite theme – change link and line colours CSS code
-
On the MH Magazine Lite theme, the default colour for links, lines and selected pages from the menu is red. I would like to cutomize the colour to blue. Does anyone have the CSS code for this? Thanks in advance
The blog I need help with is: (visible only to logged in users)
-
Hi there,
Please note that as a Business Plan customer you can get help with CSS changes like this via live chat – you do not need to post in the support forums for help with anything on your site.
https://wordpress.com/help/contact
Are you referring to the hover-colour when you hover over a link or menu item? You should be able to use the following CSS to change that:
/* Changes color of links */ .entry-content a, .entry-content a:hover { color: blue; } /* Changes menu item highlight color */ .mh-main-nav .menu > .current-menu-item, .mh-main-nav li:hover { background: blue; } /* Changes menu and widget-title border color */ .mh-main-nav, .mh-widget-title { border-bottom-color: blue; }Substitute the color with the actual color value you want to use.
- The topic ‘MH Magazine Lite theme – change link and line colours CSS code’ is closed to new replies.