-
Notifications
You must be signed in to change notification settings - Fork 235
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can't change the Backgroundcolor #9
Comments
Hello Try also adding the inline styling to your figcaption tag...
|
I've found that if you need to apply the
Update: Setting a background color for the above classes and / or setting the color inline seems to screw up the There doesn't seem to be a consistent way to style the background colors for all effects unfortunately. |
Based on the code snippet you provided, it seems that you are trying to change the CSS style for the hover view of an element with the class "imghvr-blur". However, the CSS selector you used, To change the CSS style for the hover view of the "imghvr-blur" class, you can use the following CSS code: .imghvr-blur:hover {
/* Add your desired CSS styles here */
background-color: #3de1ad;
} This code will target the element with the class "imghvr-blur" when it is being hovered over, allowing you to apply specific CSS styles for the hover state. Make sure to place this CSS code in your stylesheet or within a |
RT .
I can't change the css style for the hover view.
<figure class="imghvr-blur" style="background-color: #3de1ad;"> <img src="1.png" alt=""> <figcaption> <p>When Layla appears, she brings an eternal summer along.</p> </figcaption> </figure>
[class*=' imghvr-'], [class^=imghvr-] { background-color: #3de1ad; }
I used these two ways.. can u help me ?
The text was updated successfully, but these errors were encountered: