Sidebar stick L&R
/* GeneratePress Premium - Absolute Sticky Both Sidebars (Desktop Only) */
@media (min-width: 769px) {
/* Force the main layout structure to permit sticky behavior */
.site-content,
#page .site-content {
display: flex !important;
align-items: flex-start !important;
overflow: visible !important;
}
/* Target the exact structural columns for both sidebars */
#left-sidebar,
#right-sidebar {
position: sticky !important;
top: 20px !important;
align-self: flex-start !important;
height: auto !important;
}
}
/* Mobile & Tablet - Reset Layout */
@media (max-width: 768px) {
.site-content,
#page .site-content {
display: block !important;
}
#left-sidebar,
#right-sidebar {
position: static !important;
top: auto !important;
}
}
Comments
Post a Comment