Hey guys,
I’ve made an animated banner and it works wonderful.
However, I’d like the banner to span the whole page width and not be responsive. So when the window gets resized, the banner will still be readable.
Shop link: click me scroll down a little bit and you’ll see the animated banner
Password: siesoh
Thank you for any help!
Hi! if you created this by editing your themes code and creating a section remove the “index-section” class “page-width” class from the first 2 divs and that will make the section full width.
make a duplicate of your current site to make changes in the code editor so you have something to fall back on just in case
1 Like
It still is responsive tho 
Change your background-size to cover for mobile
@media only screen and (max-width: 750px) {
.tech-slideshow > div{
background-size:cover;
}
}
1 Like