Archived topic
Page header/menu
18 replies · Started by Andrei on May 14, 2018
Viewing posts 16–19 of 19
And what about those 2 buttons from there? How I can add them? There is the difficult part for me at this moment.
Hi Andrei,
you can try this markup:
<div class="double-button">
<a class="button" href="#">Button 1</a>
<a class="button" href="#">Button 2</a>
</div>
And this CSS:
.double-button {
display: flex;
justify-content: center;
}
.double-button a {
margin: 20px
}
.button {
border-radius: 30px;
}
And then you can style the button colours via the customiser. If you want one of the buttons to be a different color then you can add another class to it and style that like you did with the navigation CTA.
It's working as expected.
You are great
Thank you !!!
You’re welcome Andrei
This archived topic is closed to new replies.