The custom css field is visible in my version of the avia builder.
I add a class to my child theme .css
example
.blue {
color:#1BC4DE;
}
How do I apply this the custom css field. I have tried adding it without the period and with.. .blue blue but no change is ever implemented.
What am I missing?
Thank you
Hi finchkelsey!
Thank you for using our theme.
You apply your custom class in the ALB element without “.”, that means only “blue”.
This class is applied to the wrapper of the element. As the subelements of this element also have stylings, these can overwrite your settings. You have to check the HTML and CSS structure more closely on the actual page and combine it with classes, id or tags to the actual element, e.g.
.blue .av-special-heading-tag{
color:#1BC4DE !important;
}
Cheers!
Günter