Home Forums WoodMart support forum MOBILE – MORE PADDING + REDUCE ROW HEIGHT Reply To: MOBILE – MORE PADDING + REDUCE ROW HEIGHT

#34877

Artem Temos
Keymaster

Hello,

1. To decrease the height for that row on mobile devices you can try to add this CSS class `
xs-padding` to it with WPBakey Page Builder and put this code to the Custom CSS section for mobile devices in Theme Settings

.vc_row.xs-padding {
   padding-top: 60px !important;
   padding-bottom: 0 !important;    
}

2. Use this code for mobile devices only

.container, 
.woodmart-google-map-content-wrap {
   width: 90%;
}

Regards