• I have the following code in my custom css section, and it works to center all the images on mobile devices, except for the images in the right column. Images in the right column are center aligned, yet even with the custom code they somehow show on mobile devices pushed to the left. Any ideas ?

    /* center images on mobile screens */
    @media (max-width:320px)
    {
    #content .alignleft, #content img.alignleft {

    width: 100% !important;
    }
    }

    @media (max-width:480px)

    {

    #content .alignleft, #content img.alignleft {

    width: 100% !important;
    }

    }

    #content { margin-top: -8px !important; }

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Right Column Images Not Centering On Mobile’ is closed to new replies.