Tagged: enfold, rounded corners
I was able to figure out (thanks to forum search) the custom CSS to give rounder corners to the bottom of my Enfold website but I’m not having much luck finding the right code to do that on the top.
Here’s what worked on the bottom:
#socket {
-webkit-border-bottom-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-bottomright: 10px;
-moz-border-radius-bottomleft: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}
Can someone help me with the same idea for the top area? I have a boxed layout.
Here’s a link to the test site:
http://tgdigitalservices.com/o1/
Thanks!
Hey,
You can use this:
.nonfixed_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;
}
Regards,
Ismael
I added that to the custom css but it doesn’t do the trick. Does it need to apply to the social portion as well? That is what ultimately is at the very top of the page.
Hey,
My bad. I edited the code above. Please remove browser cache then reload the page.
Regards,
Ismael
Excellent! Worked that time.
Thanks!