Icon element not aligned as configured in mobile screens

Hello,

I have put several icon elements, and aligned them to the left. But when I see it in screen lower than 768px, the alignment is centered (I want to keep the left alignment I configured). How can I solve it?

Thanks in advance.

The example is this page (see the contact icons): http://congruentia.es.mialias.net/contacto/

[Content Hidden]

Hey Fernando,

Adding the CSS snippet below should fix you right up! :slight_smile:

@media (max-width: 767px) {
  .fl-module.fl-module-icon {
    text-align: left !important;
  }
}

Ben

It works! Great, thanks a lot.

No problem at all! Enjoy! :slight_smile:

Ben