The header for my website is fine when viewed on mobile of on desktop, however the alignment is off when viewed on a tablet. I want logo centered and the stuff to the right of it on the right side of the screen. Below is how it currently is on a tablet.
This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/timber.scss.css->paste below code at the bottom of the file:
@media screen and (min-width: 591px) {
.grid, .grid--rev, .grid--full, .grid-uniform {
display: flex !important;
}
}
Hope my answer will help you
Hi @FliCityKulture ,
Sure about your question, I’d like to suggest this idea:
You can add the css code below at the bottom of the file theme.scss.css:
@media (min-width: 1025px) {
.site-nav__item{
display: inline-block !important
}
.site-header .grid--table {
display: block !important
}
}
Hope my answer will help you
Thank you, that worked.


