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?
Hey Jonas!
Can you post the link to your website so we can see the issue?
Cheers!
Yigit
Hey!
Try adding this code to the Quick CSS:
.img_center_sidebar{
margin-left: 0 !important;
}
Cheers!
Josue
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
Okay, thanks!