Hi
I am keen to use Enfold for a site but I need to create a transparent content and header over a full page background image throughout as shown here:
http://www.christinahaldane.com/contact
Is this possible? I’ve tried a few things from other postings in the forum but is working so far.
many thanks
Peter
Hey!
Maintenance mode is active. Can you post temporary logins so we can see the content?
Best regards,
Yigit
Sorry, I forgot about that. Maintenance mode switched off now.
Peter
Hey!
Please firstly turn on custom CSS field for ALB elements ( http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) and then add a custom class to your element. Then add following code to Quick CSS in Enfold theme options under General Styling tab
.custom-class.av_textblock_section {
color: white;
background-color: rgba(0,0,0,0.4);
padding: 10px;
}
Regards,
Yigit
HI Yigit
It’s not working for me. I created a custom class – transparent-block – and in Quick CSS put:
.transparent-block.av_textblock_section {
color: white;
background-color: rgba(0,0,0,0.4);
padding: 10px;
}
also tried
#top .transparent-block.av_textblock_section {
color: white;
background-color: rgba(0,0,0,0.4);
padding: 10px;
}
but it’s not having any effect on the page.
Hey!
Try this code instead:
#top .avia_textblock.transparent-block{
color: white;
background-color: rgba(0,0,0,0.4);
padding: 10px;
}
Cheers!
Peter
That works great, thanks. Is it also possible to target a column layout element as the color section is the only layout element that allows a custom CSS id to be added?
Hi!
You can try the workaround Josue posted here – https://kriesi.at/support/topic/how-to-trigger-specific-elements/#post-268697
Best regards,
Yigit
Hi Yigit
That looks very interesting, I will have a go at that.
many thanks for your help.
Peter