Tagged: rounded corners
Hi,
how can i do rounded corners for the content (color section) area and menu?
Many thanks in advance
Simon
Hey Simon!
Please refer to this topic: https://kriesi.at/support/topic/rounded-corners-border-radius-in-header-area/
Regards,
Josue
Hi Josue
Thanks for the hint. But i dod not get it to work. Do i have to put the code in the quick css or anywhere else?
And i use another header ( Header with social icons and bottom navigation.)
Do i have to edit the code then? I tried this:
.social_header .header_bg, #header_meta, #header {
-webkit-border-top-right-radius: 10px;
-webkit-border-top-left-radius: 10px;
-moz-border-radius-topright: 10px;
-moz-border-radius-topleft: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
….in quick css but had no success.
Thanks in advance
Hi,
Can you post the link to your website please?
Regards,
Josue
Hey!
Try adding this code to the Quick CSS:
.avia-section.main_color, #avia-menu{
border-radius: 20px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
}
#avia-menu > li:first-child a{
border-left: 0;
}
#avia-menu > li:last-child a{
border-right: 0;
}
Result:
Cheers!
Josue
Worked like a carm!
Thanks Josue!