I’m looking to change several things with the buttons on the theme, and I’m certain it can be done through CSS.
– change color of a button (To a custom colour)
– make text on a button bigger
– change color of icon and/or text on a button
– change button from rounded corner to a rectangle with hard edges.
I’m trying to change multiple buttons to have different colours, different text size, and different icon colour. Is this possible through CSS?
Hey DaveL77!
You can simply add Button element under Content Elements in Avia Layout Builder and change color and sizes independently http://i.imgur.com/vflu6B3.jpg
Best regards,
Yigit
What about changing the button from the rounded corners to a more rectangular look?
Hey!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed
body div .avia-button {
border-radius: 1px; }
Best regards,
Yigit
That is very helpful!
One last question.
How do I make the TEXT in the button a bigger size? I didn’t see it in the button options and I’m not sure what the CSS would be.
Thank you so much for your help!!!
Hi!
Please add following code to Quick CSS as well and adjust as needed
.avia-button.avia-size-large { font-size: 16px; } /* for large buttons */
.avia-button.avia-size-medium { font-size: 16px; } /* for medium buttons */
.avia-button.avia-size-small { font-size: 17px; } /* for small buttons */
Best regards,
Yigit
Fantastic!!!
Thank you very much, this solves my issues!