Hello,
I would like to make the image in my image with text section come full width of the page. What code can i do this with? Thank you
Hello,
I would like to make the image in my image with text section come full width of the page. What code can i do this with? Thank you
Go to this sections âCustom CSSâ setting and paste this code. It would apply to this particular section.
@media (max-width:749px) {
.page-width {
padding: 0;
}
}
If you want to apply it to every âimage with textâ section, you can paste this code to the âTheme settingsâ=> âCustom CSSâ instead:
@media (max-width:749px) {
[class*=image_with_text] .page-width {
padding: 0;
}
}
Hi @ellacoker
@media screen and (max-width: 749px) {
[class*="__image_with_text_"] .page-width {
padding: 0;
}
}
If it doesnât work, please add " ! important" after âpadding: 0â.
Please let me know if you have any concern.
Cheers!