Hover color in the footer

Posted in: Newsmag
Post count: 18

Howdy tagDivvers,

Sorry to bother you all but I’m a rank newb at this. Scoured your documentation, but couldn’t find anything that helped.

Here is the issue:

I am using Footer style 6 with a widget in the centre column and another widget in the right column. (Left is merely text and not an issue.)

To make everything nice and pretty, my main menu background, the footer background, and the accent colour are all the same color (which is also an accent in my logo).

Unfortunately this means that the hover color in the footer makes the links vanish into the background color.

I am already using a child theme, and have been searching through the Parent theme CSS to try and figure out which line or lines of code are setting the footer link hover colors, but have been unable to find them. I’ve made a few guesses and overrode some lines but nothing has worked. I’ve only been using WP for a few weeks so I’m pretty crappy at it, but this method seemed the right way to go.

The two widgets in question are “Pages” and “Meta”. The site is ctrlp.press.

Thank you in advance for your kind assistance. Crap, it always seems to be Friday afternoon in N. America when I have a problem lol…

Post count: 9544

Use console f12 in chrome, select element to find the css class. I often use this but sometimes end up having to wait fir tagdiv support to point out the right class. Still as they are closed weekends you might try that to experiment.

Post count: 7909

Hi,

Please try this custom css if you want to change the background when you hover a link: http://screencast.com/t/rXVDVlNOgN

.td-footer-container .widget_pages .page_item a:hover{
background: white;
}
.td-footer-container .widget_meta a:hover {
background: white;
}

If you want to change the link color you can try this code: http://screencast.com/t/4MnBnYpK

.td-footer-container .widget_pages .page_item a:hover{
color: red;
}
.td-footer-container .widget_meta a:hover {
color: red;
}

Please paste the code in Theme Panel > Custom Css: http://screencast.com/t/Nv4aGyXlmZr

Thanks!

Post count: 18

Thank you, that worked perfectly.

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newsmag’ is closed to new topics and replies.