How can I add padding around menu items in the Streamline theme?

how can I add padding or something around the text to make it look like the second image: streamline theme

website - provengrit.us

Hi @ProvenGrit ,

I just copy what you give in the 2nd image. I reduce the font, add padding change the background color. It look like this.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
@media only screen and (max-width: 768px){
nav.slide-nav__wrapper {
    background: beige;
    padding: 40px;
}
ul#SlideNav {
    font-size: 30px;
}
}

Result:

You can change the color or the font size whatever you like.

I hope it help.