How to change hover color over featured images (origin theme)
-
I’ve just created a child theme for Origin. The first edit I’m trying to make is to change the color that pops up when you hover over the thumbnail “featured images” on the homepage. I’m trying to change the color from the default orange to purple (#824e9f) to match the other colors of my website.
I’m having trouble finding the bit of code that I would need to change or overwrite.
I tried using firebug to find it but I’m too unfamiliar to pinpoint any further with that. I did find this:
.image-info {
background: none repeat scroll 0 0 rgba(255, 150, 0, 0.95);
box-shadow: 0 0 0 1px #FFB64E inset, 0 0 20px rgba(0, 0, 0, 0.6);
height: 100%;
left: 0;
position: absolute;
text-align: center;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
top: 0;
transform: scale(0);
width: 100%;
z-index: 10;
}….I tried changing the box shadow color thinking that would work but it didn’t do what I was looking for.
- The topic ‘How to change hover color over featured images (origin theme)’ is closed to new replies.