How can I adjust the font size and background color in Pipeline theme?

Hey good people.

2 questions here

  1. trying to change menu font size on Pipeline theme and Dropdown menu background color.

  2. Add padding on homepage content (Every section under the Hero)

LINK TO WEBSITE

Thank you!

@ZAIO
Give me a screenshot so,
I can understand what you want.
Thank You.

Hey,

I wanted to make the menu font larger (See pic)

And the background of the drop down menus transparent

I think I figured it out..

Hope I didn’t make a mess

On Assets/ Theme.css I added

.navtext {font-size: 16px;}
.header__dropdown {background-color: hsla(0, 0%, 0%, 0);}
.parent .header__dropdown {background-color: hsla(0, 0%, 0%, 0);}

@ZAIO
Add this code on bottom of the theme.scss file.

span.navtext {
    font-size: 18px !important;
}
.header__dropdown {
    background: transparent !important;
}

Thank you for quick response!

What about mobile?

And is there a way to keep transparent only on the home page and on every other page to have it with a set background color?

My dream menu is this right here

https://shousugibanhouse.com/

I understand it’s way more complex,

Where do I even start with this?

have any ideas?