- This topic has 5 replies, 2 voices, and was last updated 9 years, 1 month ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Legacy Theme Support › Page title transparency in slider
Tagged: page title, Slider, transparency
Is it possible to change the box that details the page/post title on the slider to full transparency? so that only the title appears and not the semi-transparent box?
The code that handles that is actually coming from the plugin’s css, so you would have to override it by adding something like this to your style.css file –
.slide-excerpt {
background: none !important;
opacity: 1;
}
Thanks for the quick respons!…the css within the plugin itself seems to control opacity for everything – the text and box background. I was able to figure out how to get rid of the box completely, but now the font color is too light – and I need to change that – any idea where I would find the code for that?
I would need a link to your site in order to see the issue.
http://www.palenciafineartsacademy.cloud9localmarketing.com/
on the slider – the page title, if I take away the box/transparency, then the text/font color is too light to be seen against the pictures…I would need to change it to white or something like that
Add this to your css to override it –
.slide-excerpt-border h2 a {
color: #fff;
}