Make image full width - please help!
Permalink
Hey the site i am working on ishttp://www.Alympian.com,
I am trying to make the home image full width so that when a large screen computer looks at the website the image touches both the left and right side of the screen. Right now it is just centered.
Is there some custom CSS I can add to the details of the block or can I insert some HTML somewhere to make it stretch to 100% width of the screen?
Thanks,
Jason
I am trying to make the home image full width so that when a large screen computer looks at the website the image touches both the left and right side of the screen. Right now it is just centered.
Is there some custom CSS I can add to the details of the block or can I insert some HTML somewhere to make it stretch to 100% width of the screen?
Thanks,
Jason
.banner-content img {
width: 100%;
height: auto;
}
I noticed it had 'max-width: 100%' rather than just 'width'.
Just tested it chrome and it seemed to work