Sometimes you have content left and right aligned on desktop, but you want it center aligned on mobile. Add the class hws-center-on-mobile to the CSS class in the row settings and the following custom css (this does text and social media follow, change where needed).
Note: you should also be able to change this in the module responsive settings.
/* -- START center align content on mobile -- */
@media (max-width:980px) {
.hws-center-on-mobile,
.hws-center-on-mobile .et_pb_text_inner,
.hws-center-on-mobile .et_pb_social_media_follow {
text-align: center!important;
}
}
/* -- END center align content on mobile -- */Code language: CSS (css)