Archived topic
Sidebar/ position/ mobile
3 replies · Started by Jan on May 7, 2021
Viewing posts 1–4 of 4
Hi David,
I'd like to position the sidebar differently on mobile and desktop. Please let me know how I need to correct the following code snippet...
@media (min-width: 768px)
.is-right-sidebar {margin-top: -335px; }
...to make the negative top-margin only appear on desktop.
Many thanks,
Jan
Hi there,
use this CSS:
@media(min-width: 769px) {
.is-right-sidebar {
margin-top: -335px;
}
}
Hi David,
this works very well.
Thanks for your outstanding support.
Best regards,
Jan
Glad to be of help
This archived topic is closed to new replies.