Archived topic
css for header left padding for tablet
3 replies · Started by Eddie on May 16, 2022
Viewing posts 1–4 of 4
Hi Team,
I have set left margin 140px for dekstop and I would like 0 left margin on Tablet.
Can you please help with css needed?
this is the css i currently use for fonts size on tablet.
@media (min-width: 769px) and (max-width: 1024px) {
body {
font-size: 17px;
}
.main-navigation a {
font-size: 16px;
}
Thank you for your help.
Hi Eddie,
Try this:
@media (min-width: 769px) and (max-width: 1024px) {
.site-header .inside-header {
padding-left: 0;
}
}
Thank you Ying, works great :)
You are welcome :)
This archived topic is closed to new replies.