-
AuthorPosts
-
August 26, 2021 at 5:36 am #1318372
HI,
I have done some custom css for my blocks on this page – https://alexandere23.sg-host.com/everything looks great on desktop but on mobile, they blocks are overlapping each other, how can i add more spacing between the columns on mobile?
the spacing is required the last color sections on the page
- This topic was modified 3 years, 4 months ago by navindesigns.
August 28, 2021 at 4:48 am #1318738Hey navindesigns,
You can wrap your CSS in a media query, so that it only applies above a specific pixel width:
@media only screen and (min-width: 768px) { Your custom CSS goes here }
If that is not what you are looking for, then please try to explain the problem a bit further. Screenshots might help us understand what you are looking to achieve as well.
Best regards,
RikardAugust 29, 2021 at 12:16 am #1318798sorry here is my screenshot
https://ibb.co/GdT4CRC – i need add more spacing between column on mobile on this page in the section labelled “Providing Client Solutions” . the columns are overlapping each other on mobileHere is the page – https://alexandere23.sg-host.com/i360host
August 31, 2021 at 1:20 pm #1319124Hi,
Thanks for contacting us!
Please add following code to Quick CSS field in Enfold theme options > General Styling tab
@media only screen and (max-width: 767px) { #clientsolutions { margin-bottom: 50px !important; }}
Best regards,
YigitAugust 31, 2021 at 2:54 pm #1319158Thank you! That worked perfect
I hae the same issue on another page
screenshot – https://ibb.co/vz13RMNlive site – https://alexandere23.sg-host.com/consulting
Thanks in advance
August 31, 2021 at 3:24 pm #1319165Hi,
Could you please edit your page and then give your “Vendor-agnostic Solutions” and “Full-Service Consulting” columns a custom ID in Advanced > Developer Settings (“custom-bm” in example below) and then add following code to Quick CSS as well?
@media only screen and (max-width: 767px) { #custom-bm { margin-bottom: 50px !important; }}
Cheers!
YigitAugust 31, 2021 at 7:31 pm #1319230This is perfect.
thank you so much!!!
September 1, 2021 at 11:55 am #1319322 -
AuthorPosts
- The topic ‘Mobile spacing between columns’ is closed to new replies.