Dear,
In my front page, I want to set padding (left and right) to zero for a particular color section (without affecting the other color sections of the same page.
I tried .container
{ padding: 0px 0px 0px 0px !important;
}
but it is affecting all sections. Is there a way to do this?
Thank you
Hi msahli ;
give an “id” to the color section with Section ID field (at the bottom oh color section),
and use this “id” to change only this color section.
#your-id{ padding: 0px !important;}
Thanks begrafix!
It works! Actually I did a small change to get it work:
#your-id .container{ padding: 0px 0px 0px 0px !important;}
Thanks again
Nabil