Hi dear Kriesi-Team,
I use a color section on my homepage with a 2/3 container for a slider and a 1/3 container for a text box. My issue is that I can’t align the slider to the very left of the page without the default page margin. Could you please help?
Kind regards & thanks for helping,
Michael
Hey!
Try adding this code to the Quick CSS:
#start .container {
margin-left: 0 !important;
}
Cheers!
Josue
Hi Josue,
thanks for the quick answer. The problem with the code is, that the whole coloer section is moving to the left. The 1/3 container should stay as it is. Only the 2/3 container should have no margin left and still have the edge on the rigth, so it keeps in line with the other columns.
Is this possible? Could you please help?
Cheers,
Michael
Hi!
In that case, please use following code instead
#start .av_two_third {
margin-left: -50px;
margin-right: 50px;
}
Regards,
Yigit
Thanks!