I’m trying to get the .size-full images to override the page padding, so they will touch the edges on tablet size and smartphone. I have achieved this for videos, but not for images. https://bingewhat.com/2018/03/22/the-best-romantic-comedies-1/
I can force a min-width 768px for tablet, and 320px for iPhone — but there are other sizes that it won’t work for. Example: http://mobiletest.me/google_nexus_7_emulator/?u=http://www.bingewhat.com
I’ve tried everything. Here’s the tablet example of the code I’m using…
.td-post-content p .size-full {min-width:768px;margin-left:-14px;margin-right:-14px;}
It seems the screenshot did not get through.
I meant this code: https://www.screencast.com/t/3JfSwwR5gvMj
Thank you!
Hello,
Css cannot be rewritten too many times. There comes a point where a custom css cannot rewrite the original code anymore. I cannot provide any code that will rewrite the css. You will have to remove it from your custom css and remove the padding from style.css:
https://www.screencast.com/t/4lotTy1k Once both these paddings are removed, the images go full width: https://www.screencast.com/t/xcJ767Mm9
The bar on the right is a scroll bar. That can be removed like so:
::-webkit-scrollbar {
display: none;
}
Thank you!
