Home Forums Trusted Pro Footer Widgets on Mobile Divices

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #2976
    planetshay
    Participant

    Hello,

    Could you help me figure out how to get the footer widgets (footer column 1, footer column 2, footer column 3 and copyright area) to center on mobile devices please? They are all left justified right now and I want them centered on mobile devices smaller than 769px. Thanks for your help 🙂

    #2984
    Andy
    Keymaster

    This should center the footer content and widget titles

    @media screen and (max-width: 768px){
        #colophon{
            text-align: center;
        }
        #colophon h5.widget-title:after{
            left: 50%;
            margin-left: -40px;
        }
    }

    but note that content generated by third-party plugins may have it’s own CSS rules which could need overriding.

    #2991
    planetshay
    Participant

    That worked. Thank you so much for all your help, it is much appreciated 🙂

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Footer Widgets on Mobile Divices’ is closed to new replies.