Hi!
How can I get Color Sections without rounded Corners?
http://gyazo.com/00b03e88dc822f22197dc9e4a4a2f8d0
Hi pegasso4444!
Can you post the link to your page where we can see an example? By default color section is not rounded
Regards,
Yigit
Hi!
Yes, there was a 20px radius in your css.
I was able to solve the problem:
from original css:
.avia-section.main_color, #avia-menu{
border-radius: 20px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
}
to:
.avia-section.main_color, #avia-menu{
border-radius: 0px !important;
-webkit-border-radius: 0px !important;
-moz-border-radius: 0px !important;
}
Thanks
Peter