Comments MarcelWeiler started the conversationFebruary 7, 2018 at 6:31pmHi,how can i create a special menu item like the "Buy" button on the demo page?Regards,Marcel[deleted] repliedFebruary 8, 2018 at 8:30amHi Marcel, First you must add a class to your menu item, to learn how you can do that please see this video. Then you can go to Custom CSS area and style that button. Here is an example that we used for the Restaurant demo: /* Menu: Special button */ @media screen and (min-width: 768px) { .special-menu-button a{ -webkit-box-shadow: 0 10px 30px 3px rgba(0,0,0,0.08); box-shadow: 0 10px 30px 3px rgba(0,0,0,0.08); -webkit-border-radius: 40px; -moz-border-radius: 40px; border-radius: 40px; padding: 4px 15px; background: #d09e5b; color: #fff !important; margin-left: -15px; } .special-menu-button a:after { background-color: transparent !important; } } Thanks!1 Like Sign in to reply ...
Hi,
how can i create a special menu item like the "Buy" button on the demo page?
Regards,
Marcel
Hi Marcel,
First you must add a class to your menu item, to learn how you can do that please see this video.
Then you can go to Custom CSS area and style that button.
Here is an example that we used for the Restaurant demo:
Thanks!