- This topic has 3 replies, 2 voices, and was last updated 3 years, 7 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- The topic ‘Top bar’ is closed to new replies.
Hi! I would like to edit my top bar ( where theres the cart icon) to add a call to action at the top. How can i do this?
There is a “Top Bar” widget area where you can write your content.
To access the widget areas go to ‘Appearance’ > ‘Widgets’, or ‘Appearance’ > ‘Customize’ > ‘Widgets’.
Add any of your available widgets (e.g. a “Text” widget) to the “Top Bar” widget area and hit ‘Save’.
Sorry not the top bar but the theme header! How can i do this?
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.