Hello,
I am trying to add 3px radius to promox on all pages in my site with the following css:
.av_promobox {
border-radius: 3px;
}
This doesn’t work, neither does adding !important or this:
.av_promobox avia-button-yes avia-builder-el-47 avia-builder-el-no-sibling {
border-radius:3px !important; }
Can you please provide a solution?
Hey ckwellington,
Do you mean the 5 items under Built on Your Lot? If so I can see a border and radius on them. If that is not what you are referring to then please post a screenshot of the items you would like to add a radius to.
Thanks,
Rikard
No, I’m talking about the promo box with button down below the gold area. Thanks.
Hi,
Ok, please try the following CSS:
.home .av_promobox {
border-radius: 3px !important;
-moz-border-radius: 3px !important;
}
Regards,
Rikard
Worked like a charm! Thanks!