Forums
Home / Theme: Customify / sidebar padding media size
(@rilliam)
4 years, 4 months ago
Is it possible to add padding-top to sidebar-primary and sidebar-secondary when the screen size is greater then 1200px?
(@longnguyen)
Hi,
You can use this custom CSS code in Appearance > Customize > Additional CSS, to increase the padding-top of the primary and secondary sidebar when the screen width greater than 1200px.
@media (min-width: 1200px) { #sidebar-secondary, #sidebar-primary { padding-top: 100px; } }
Regards.
4 years, 3 months ago
Works great!