Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1348700

    On my site – http://balrajt9.sg-host.com/ – I have some social icons at the bottom in the footer

    On desktop, they look great but on mobile , I need them to be centered instead of left aligned

    #1348773

    Hey navindesigns,

    Thank you for the inquiry.

    You can use this css code to align the social icons to the center on mobile view.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top #footer .widget .social_bookmarks {
        text-align: center;
      }
    
      #top #footer .widget .social_bookmarks li {
        display: inline-block;
        float: none;
      }
    }
    

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.