vdph
1
Hi,
I would like to decrease the height of the theme’s header and menu bar (evenly and in both desktop and mobile).
*Most suggestions I found from other threads were to look for ‘theme.scss.liquid’ in the Assets folder, but I can’t seem to find that file.
Link to the store
You need to add this code to the end of file theme.css in your Theme’s assets folder.
@media screen and (min-width: 641px) {
.header {
padding: 0;
}
}
@media screen and (min-width: 1000px) {
.nav-bar__item {
padding: 5px 0;
}
}
Try adding this rule to the bottom of theme.css
.header{
padding: 0;
}
.nav-bar__item{
padding-top:15px;
padding-bottom:15px;
}
You can adjust ‘px’ values to match your preference.
Result:
hello @vdph
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
@media screen and (min-width: 749px) {
.header {
padding: 0;
}
.nav-bar__item {
padding: 5px 0;
}
}