Hi,
– how can I remove the underlined text in buttons links?.
I´ve added this code in quick css but nothing happens.
.avia-button {
text-decoration=none!important;
}
– I would like also to have a yellow background for the 3 boxes (only in this page)
Is that possible?
Could I add some CSS class to that element in particular and manage it via Quick CSS?
thanks!
Hey cipriana,
1.) You almost got it! It should be a colon instead of an equal sign. Here’s the correct code:
.avia-button {
text-decoration: none!important;
}
2.) Yes, you can create a CSS class for the Builder elements. But you have to turn the feature on first using the instructions here: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
After that, you can use something like this in Quick CSS:
.yellow-iconbox {
background:yellow;
}
Or if you want to make it really specific for this page, you can use this:
.page-id-649 .yellow-iconbox {
background:yellow;
}
I hope that helps!
Best regards,
Sarah
Hi!
-First one worked!
-Second one:
My custom css class is named iconbox-amarillo
I´ve added this code:
.iconbox-amarillo {
background:#e9c546;
}
But nothing happens.Thanks!
Hi! Can you try the !important rule?
.iconbox-amarillo {
background:#e9c546 !important;
}
Best regards,
Sarah
That was it!!
Thank you very much Sarah!
You’re very welcome! Let us know here in the forums if you need help with anything else.
Cheers!
Sarah