Add transparency to featured text box
- The topic ‘Add transparency to featured text box’ is closed to new replies.
Need help? Check out our Support site, then
Hello, i’m wondering if i can add Transparency to the featured textbox (the yellow box with the title of the articles that appears on featured). much appreciated!
The blog I need help with is: (visible only to logged in users)
Hi there – this is possible. What specifically do you want to change?
If it’s just the background then you could use (the 0.5 at the end means 50% transparency):
.showcase .item h2 a.entry {
background: rgba(255, 238, 0, 0.5);
}
Or if it’s the whole thing you could use:
.showcase .item h2 a.entry {
opacity: 0.5;
}
Thank you binarymoon! That’s what i was looking for!