- This topic has 1 reply, 2 voices, and was last updated 3 years, 7 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The topic ‘Call to Action in header’ is closed to new replies.
Hi! Me again sorry :/ I would like to add a CTA button i.e. ‘book now’ on my header. Is that possible? If yes, then how can i do this. Thank you for your help and amazing theme!
You could add it as a menu item in the header menu, and then use custom CSS (Appearance > Customize > Additional CSS) to make it appear as a button:
#primary-menu > li:nth-of-type(3) {
background: red;
border-radius: 3px;
}
In the example above, change the background color to any color you want, and change the number in brackets (3)
to the number of the menu item. For example if it is the 4th item use number (4)
and so on.