Hi,
I wanted to know if it is possible to convert Enfold’s button into round buttons. If so, how can this be done? Thanks.
sl
Hey slui,
You can use the buttons css class to target them and then adjust the border-radius to round them as much as you need. For example
.avia-button{
border-radius:60px;
}
Best regards,
Jordan Shannon
HI,
My fast fix with a Quick CSS so only defined ones will be around:
1. you activate custom CSS field => http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
2. you set to the custom ccss class from the button the css class name example nxh-roundbutton
3. in the Quick CSS you write
.nxh-roundbutton .avia-button { border-radius: 50% !important; min-height:100px !important; min-width:100px !important; padding-top:44px !important;}
Info
The padding-top is is being computed 50% from min-height, here in the example then 50px and 50% from font-size at 13px font-size is 6 thus 50-6 = 44 and with the min-height and min-width you define the size of the round button ;)
that’s all
best regards
Jörg :D
Thank you to both. Both solutions worked.
@Nixhalbes – I appreciate the explanation and the ability to target a specific item. Super useful.
sl