Tagged: color section, fullwidth
Hi,
I did add a color section then inside it is an image. I did add a developer ID in there and applied the
#banner-about .container {
width: 100% !important;
}
css code.
Unfortunately my image is still not in fullwidth, my theme is not in boxed mode.
Hi systemise!
Can we please check your web site?
Making the section full width, would require the container to be also, that you have the elements placed.
Regards,
Basilis
Sure, link is in private message
Hi!
you need to control responsiveness by yourself, as no theme can know how you want an image to behave on different scree sizes. Control it using this code in Quick CSS code:
@media only screen and (max-width: 767px) {
#banner-about {
background-size: 100% 35% !important;
background-position: 0px 0px !important;
}}
and adjust as needed.
Cheers!
Andy