Hello. I’ve struggled with this for hours. Usually I can find the right selectors to change something in CSS, but the Inspector isn’t helping me find what I need…
In the Integrity Stack there is “hover effect” styling somewhere that causes a white background behind the list element… which then makes my links in my Blog Categories widget disappear because they are white. Regardless of changing the link color, I do not want the white hover background.
I’ve tried lots of things, some of them are below and got rid of borders, text shadows, box shadows, etc… but, I still can’t figure out the specific CSS to stop the white background hover effect in the integrity-light css styling.
.widget {
text-shadow: none;
border: none !important;
box-shadow: none !important;
}
.widget ul, .widget ol {
border: none !important;
box-shadow: none !important;
transition: none !important;
background-color: none !important;
}
.widget ul li {
border: none !important;
box-shadow: none !important;
transition: none !important;
}
I tried using a:hover in the list css, but the hover isn’t on the link… it’s on the space that the link is in, and nothing I’ve tried changes it.
Please help. I can’t get rid of the white hover background. Thanks!
I love Pro theme, I do, but it’s maddening really, the amount of time I spend trying to isolate and kill excessive styling in a stack because we are forced to use stacks. Fine, please create a stack called “None” with no styling. It would take less time than this, for everyone.