Hi!
How could I use the enfold backgrounds for other avia layout elements e.g. the background of the “Reiter” element?
Cheers!
Hey StudioLiner!
Thank you for using Enfold.
If you don’t mind, please provide a screenshot. Use imgur or dropbox. What do you mean by “Reiter”?
Regards,
Ismael
Hi Ismael,
here are three different avia layout elements for example:
Box:
http://hotel.fmgruppe.de/test/box-backround.png
Table / Spreadsheet:
http://hotel.fmgruppe.de/test/table_backround.png
Slide (Reiter):
http://hotel.fmgruppe.de/test/Reiter_backround.png
Partly it is possible changing the backround color of an avia layout element but there is nowhere the possibility to enter an picture.
Cheers
Hi!
You can use the Quick CSS field to apply background images to the elements.
.av_promobox {
background: red !important;
}
div .main_color .tabcontainer .active_tab_content, div .main_color .tabcontainer .active_tab {
background: blue !important;
}
You can replace the color value with background images. Unfortunately, you can’t add a background to the whole table because each rows has its own background.
Regards,
Ismael
Hi Ismael,
can i exactly to that to all layout elements? I want to do a grey background for the body and white background for all the elements, like text blocks e.g.
thanks,
Lucie
Hi!
You can use the background styling, but in order for it to work with specific elements, you’ll need to use the appropriate class names.
For example, the below css will affect all text blocks across your entire site.:
.avia_textblock {
background: red !important;
}
Regards,
Dake
Hi Dake,
got it, thx!