Hi,
I’m using a text and picture element within a gridrow, each 1/2.
The textblock seems to have some sort of padding and i can’t figure out where it’s from.
I want it to be full width, like the text element below. Section “Über mich (about me)”
Screenshot and link on private content.
Thanks in advance :)
Best regards!
Hey northorie,
Thank you for the inquiry.
The padding is applied by this css rule.
.responsive #top #wrap_all .av-flex-cells .no_margin {
display: block;
margin: 0;
height: auto !important;
overflow: hidden;
padding-left: 8% !important;
padding-right: 8% !important;
}
You can override it with this css code.
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all .av-flex-cells .no_margin {
padding-left: 0% !important;
padding-right: 0% !important;
}
}
Best regards,
Ismael
Great! Thank’s a lot :) Problemis solved an topic can be closed