Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #281226

    Hi,

    I have a small problem with the images and widgets in the sidebar.

    When I use mi Ipad vertical, the images is cuttet 5 px or so in the right side.

    Do you have a quick css fix for that?

    #281267

    Hey Jonas!

    Can you post the link to your website so we can see the issue?

    Cheers!
    Yigit

    #281818
    This reply has been marked as private.
    #281861

    Hey!

    Try adding this code to the Quick CSS:

    .img_center_sidebar{
        margin-left: 0 !important;
    }

    Cheers! 
    Josue

    #281970
    This reply has been marked as private.
    #282016

    Hey!

    What is actually happening is that you are setting your widget content to a static width which isn’t planning for the site being responsive. So when the sidebar adapts to the browser width, the width you’ve set on those widgets is larger than the sidebars actual visible space.

    So even if you do something like this to change the margin to be zero on screens below 1140px wide:

    
    @media screen and (max-width: 1139px){
    .inner_sidebar {
        margin-left: 0px;
    }
    }
    

    The widgets still wont fit unless you change their widths to something ore like 180px since I don’t think Facebook has responsive code snippets at this point.

    Regards,
    Devin

    #284332

    Okay, thanks!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Image in sidebar is cuttet’ is closed to new replies.