Hi
is it possible to adjust the color section width as shown in the picture?
Thank you
Hi,
Thanks for contacting us!
Please edit your Color Section element and give it a Custom ID in Advanced > Developer Setting tab (“my-cs” in example below) and then add following code to bottom of Quick CSS field
#my-cs .avia-slideshow {
max-width: 1310px;
margin: auto;
}
Best regards,
Yigit
Hi Yigit
i added the css – with # it didn’t work, then i took the point in front:
.home-color-section-width .avia-slideshow {
max-width: 1310px;
margin: auto;
}
on the right side it already looks good, only the left side would have to go too.
Can you help me?
Thank you
Hi,
Please change the code to following one
#top .home-color-section-width .avia-slideshow {
max-width: 1310px;
margin: auto;
}
:)
Best regards,
Yigit
Hi Yigit
already almost perfect – now not yet flush with the boxes – see picture :)
Thank you
Hi Yigit
can you help me adjust the width so it is flush with the box.
Thank you
Hi,
Please add following code to bottom of Quick CSS field as well
#top .home-color-section-width .container {
padding: 0;
}
Best regards,
Yigit
Hi Yigit
not quite right yet – but if i take this max-width it looks good – but the value 1210px is fixed now, and i don’t know if this is correct:
#top .home-color-section-width .avia-slideshow {
max-width: 1210px;
margin: auto;
}
Thank you for your help
Hi,
That looks fine. There is still some space on both sides on mobile. If you would like to remove it you can use
@media only screen and (max-width: 1024px) {
#top .home-color-section-width .container {
padding: 0;
}
}
Best regards,
Yigit
Thank you Yigit