Featured post Oxygen theme customization
-
Hello,
I’m using a Oxygen theme and I customized the color of my posts title in featured post (the slide show of post into hompege).As you can see, I have a background purple color, but I want to make it a little bit transparent, so I can see the image below.
How can I do it?I’m using this code in CSS at the moment:
.featured-post .entry-title a {
color: black;
background-color: #C693F7;
bottom: 50px;
}The blog I need help with is: (visible only to logged in users)
-
Hi!
You should try with opacity property. The value goes from 0 to 1. 1 is completely opaque -default value- and 0 completely transparent. For instance:
.featured-post .entry-title a { color: black; background-color: #C693F7; bottom: 50px; <strong>opacity: 0.5;</strong> }I hope this helps you. Enjoy blogging! :)
-
Ups… You don’t need tags! :)
.featured-post .entry-title a { color: black; background-color: #C693F7; bottom: 50px; opacity: 0.5; }
- The topic ‘Featured post Oxygen theme customization’ is closed to new replies.