Changing size of the sections entry box + opacity
- The topic ‘Changing size of the sections entry box + opacity’ is closed to new replies.
Need help? Check out our Support site, then
Hi there!
I’m trying to resize the entry box, that shows in the content slider, and also in the posts. I belive it should have some css to do it? But i’m not being able to find how.
What I’m trying to do is put all padding and other margins to 0… Because the box is too large, and take too much of the picture… Is that possible?
Also, is it possible to reduce the opacity of that shadow over the image?
Thankx
The blog I need help with is: (visible only to logged in users)
Hi – to shrink the padding for the title box in the slider you can use the following custom css:
.content-posts article.post-has-thumbnail .entry {
padding: 0;
}
To change the opacity of the gradient background you can use:
a.thumbnail:after {
opacity: 0.5;
}
You can change 0.5 to taste. 0 is transparent, and 1 is opaque.
Thanks – Ben
Thanks