I'm trying to force certain images and divs to go full width under 1000px. I've figured out how to apply this to the featured image on a blog post, and also the author bio at the bottom of the post: Although this only seems to work under 690px even though I've applied it for under 1000px. Any tips on how to implement this better?
See here for example:
@media only screen and (min-width : 1px) and (max-width : 1000px) {
article.post .content-inner .post-featured-img img {
width:120%;
margin-left:-10%;
}
}
Hi,
I'm trying to force certain images and divs to go full width under 1000px. I've figured out how to apply this to the featured image on a blog post, and also the author bio at the bottom of the post: Although this only seems to work under 690px even though I've applied it for under 1000px. Any tips on how to implement this better?
See here for example:
http://nathanmfarrugia.com/blog/are-ebooks-really-the-future-of-writing-the-telegraph/
Currently works a treat under 650px width.
Thanks!
Nathan
Hey!
try changing it to:
Amazing, thank you!
It still messed up over 680px but this time I only had to increase the size from 120% to 130%: