How to change the padding for only this part in section-2 of the homepage.
Chi-K Hi
It belongs to that separated div tag, how you want it should be?
Possible to override the top padding only for that section (section-2) and page (home) and desktop view only, to something smaller like 50px top and bottom, its 108px now. Is it posible to assign a custom css to it via the template styles and add that css in custom.css?
Hi Chi-K, You can go to the Backend > Menu > Home menu and add an extra class here:
Use the following CSS code:
@media (min-width: 767px) { body.custom-space .t4-section-2 { padding-top: 50px !important; } }
Hope this help!
That worked thanks!