Forum Replies Created
-
AuthorPosts
-
Steck InsightsParticipant
Ddspa, if you rethink your decision, you can set up rules in the responsive section of the stylesheet so that it display differently (not using the hover effect) on smaller displays. Let me know if you need help assigning responsive stylesheet rules. Best wishes!
Steck InsightsParticipantCould you clarify what a "backstash image" is? That may be what's confusing in this conversation.
Could you also submit a link to your stylesheet? It's hard working "blind."
The Agency Pro theme is using the following CSS to adjust the image opacity on hover:
.home-middle .featuredpost img:hover { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)"; filter: alpha(opacity=10); -moz-opacity: 0.1; -khtml-opacity: 0.1; opacity: 0.1; }
Because the image is absolutely positioned, it overlaps the text. When hovering over the image (which is also wrapped in a link), the image virtually disappears, allowing the text underneath to be seen.
Chances are, you may have applied the opacity attribute to the image (
.home-middle .featuredpost img
), so you're seeing the text underneath, regardless of whether it is being hovered over.You'll want to make sure there is no opacity setting for the image unless it's being hovered over.
Without seeing your stylesheet code, it's going to be difficult to be sure about this. If you are able to upload the stylesheet to a server, or even share it via Dropbox or Google Drive, I should be able to figure this out.
Hopefully, I'm on the right trail.
Steck InsightsParticipantHi there Ddspa,
I'm not quite sure I understand your problem. Hopefully, you've looked at the Agency Pro setup instructions already, as they may be helpful.
Just so I make sure I'm on the same page as you, let me repeat what I'm hearing: you've updated the featured images for the posts that are being pulled in by the Featured Posts Plugin that is placed within the Home Middle widget area, so you can see the featured image behind the text in the Home Middle widget area on the homepage (As described here). Is the problem that you are seeing the excerpt text even when you are not hovered over the post on the Home Middle widget area of the homepage? or that you only see it when hovering (which you want), but simply want to change the color of the excerpt text?
Let me know if I'm understanding your question correctly.
In case you are simply trying to change the color of the text on the excerpt, here is that solution:
- Open the style.css stylesheet
- Update the following rule (found on line #1247 by default), .agency-pro-home .content .featured-content .entry-content, to include
color: #000000;
(changing #000000 to reflect your desired color).
If you, indeed, wanted that text to change when hovered, you should add a rule after the aforementioned existing rule (line #1247) named:
.agency-pro-home .content .featured-content .entry-content:hover
Let me know if I'm on the right trail or if I'm misunderstanding your intentions. We'll get this straightened out!
-
AuthorPosts