Good afternoon,
I am having an issue with the module ACM - features intro style1 - as you can see gfrom the screenshot, on mobile the module does not render full width.
appreciate your usual assistance with this.
thanks in advance,
Mark
ACM module - mobile view
Hi Mark,
It due to your custom CSS code:
#t4-section-1 {
margin: ;
padding: 10px 100px;
margin-top: -300px;
background: transparent;
}
you set the padding for this section so it looks quite small on mobile view.
If you want to set padding for desktop view only, you should use Media Queries:
@media (min-width: 992px) {
#t4-section-1 {
margin: ;
padding: 10px 100px;
margin-top: -300px;
background: transparent;
}
}
It will not affect the mobile view then.