hi, how I can reduce the top padding in 148 id module? I try to add #Mod148 {padding-top:0px !important;} in css custom but it not works
librandi
Add to your custom.css
@media (min-width: 992px) { .sections-wrap .section .section-inner, .sections-wrap .t3-module .section-inner { padding-top:0px!important; } }
grazie Vittorio, ma così si applica a tutti, invece vorrei solo per questo modulo
librandi Hi Use this code
@media (min-width: 992px) { #section-148 .section-inner { padding-top:0px!important; } }
thank you very much