Hi guys,
I’m trying to add padding to a text container but can’t find custom code.
Also I would like to chance the full width button to make it look more subtle (smaller font and less height).
See screenshot.
And last but not least I would like to add a color to the top row of a table.
Can you help me out?
Hey MulderMind,
Thanks for the screenshot. Could you post a link to where we can see the actual elements as well please?
Best regards,
Rikard
Hi Rikard,
Link to the site is there.
What I wan to achieve is to make the blocks on the homepage look like the blocks in the screenshot.
So basicly I want to add padding to the text container and make the button more subtle.
With kind regards,
Hi,
Thank you for the update.
You can use this css code to adjust the style of the button element.
#top .avia-button-fullwidth {
width: calc(100% - 40px);
padding: 20px;
font-size: 1.5em;
margin: 20px;
}
And to create spaces between the elements, you can either apply a margin to them, again with the use of css code or insert an hr/separator element.
Best regards,
Ismael