The sticky header on my site is very small and I do not know how to change this.
Any ideas how I can make this a normal looking header?
The sticky header on my site is very small and I do not know how to change this.
Any ideas how I can make this a normal looking header?
@GildedSocial add below css into theme.css file
.stuck.tt-stuck-nav {
top: 0px;
padding-top: 18px !important;
height: 10% !important;
}
Add this code in css file
.tt-stuck-nav {
padding: 20px 0
}
Hello @GildedSocial
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.
.tt-stuck-nav {
height: auto;
padding: 16px;
}