Hello
when i created a website now i used the diagonal border in the colorsection. On the PC it looks good but mobile its way too big. Runs over the whole page..
Do you have a code for the quick css to make it smaller?
That would be great :)
Thanks a lot,
rixi
Hi Rixi,
Thanks for contacting us!
Please edit your Color Section element and give it custom ID (“your-custom-id” in example below) in Advanced > Developer Settings and then add following code to bottom of Quick CSS field in Enfold theme options > General Styling tab
@media only screen and (max-width: 480px) {
#your-custom-id .container {
height: 210px !important;
}
#your-custom-id .content {
padding-top: 60px;
padding-bottom: 60px;
}
}
Best regards,
Yigit