Edit feutures image.
-
Hey! I’m really bad at css coding and the wordpress live support said it was pretty tricky so here I am!
I got 3 ”favorit pages” showing on the homepage, and I was given help to remove the feutured images to show when entering the page.
However, I would like to remove the fading on the Pictures on the homepage. ( ”Tryck” ”Vårat tips” ”Kontakt” ) on Reklamkakan.com
Is this possible ?The blog I need help with is: (visible only to logged in users)
-
Hi there, yes, this was tricky to find. Add the following to your custom CSS to remove the white gradient over those images on the main page.
.card .post-thumbnail::before { background: none !important; } -
ok so I just add what post it is like:
.card .post-343thumbnail::before {
background: none !important;
}Sorry but I dont really understand css at all.
-
Hi, I see the CSS above entered into your custom CSS. Do you still have questions on this?
-
I entered the css code but nothing happened. The fading didnt disapear. What did I do wrong?
Btw thanks alot for helping me out.
-
Hi, if you add a unique post CSS class, such as .post-343, it will mean that the CSS will only apply to that single post, and no others. My original code, reposted below, removes the overlay gradient from ”Tryck” ”Vårat tips” ”Kontakt”. Replace the code you entered with the post-343 selector with the following.
.card .post-thumbnail::before { background:none !important } -
Thanks alot ! Didnt work with the first code but now it changed right away!
Very thankful for the help! -
- The topic ‘Edit feutures image.’ is closed to new replies.