Archived topic
Can I change the color of the shadow for posts on home page?
7 replies · Started by Chandrasekhar on February 12, 2022
Hello friends,
My site is hospitalistx.com. I used a short code to create shadow around each post on home page. I want to customize the shadow color to light pink. I tried but no change happened. Can anyone please help?
Hi there,
can you share a link to the page where i can see this?
I am talking about the shadow when I hover the cursor over any thumbnail on my home page http://www.hospitalistx.com
Is there a reason why you are using a shortcode instead of just CSS?
I added a short code in additional CSS.
So you have this CSS:
body:not(.single) .inside-article:hover {
box-shadow: 0px 0px 30px 0px rgba(0,0,0,.5);
}
And if you want to add a different shadow for home page then you add this CSS:
body.home .post .inside-article:hover {
box-shadow: 0px 0px 30px 0px rgba(255,0,0,.5);
}
You just need to change the rgba(255,0,0,.5) to what you require.
Thanks. Appreciate your help.
You're welcome