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…
-
This topic was modified 11 years by
CtrlP Press.
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!