Add to css_additional.css
Tired of those same old square corners?
This code will round them for you
Code:
/* Start rounded corners */
.canvas-widget.default-widget, .search-widget, .blogsidebar-widget {
-moz-border-radius-topleft:10px !important;
-moz-border-radius-topright:10px !important;
-webkit-border-top-left-radius:10px !important;
-webkit-border-top-right-radius:10px !important;
border-top-left-radius:10px !important;
border-top-right-radius:10px !important;
-moz-border-radius-bottomleft:10px !important;
-moz-border-radius-bottomright:10px !important;
-webkit-border-bottom-left-radius:10px !important;
-webkit-border-bottom-right-radius:10px !important;
border-bottom-left-radius:10px !important;
border-bottom-right-radius:10px !important;
}
.widget-header.h-clearfix {
-moz-border-radius-topleft:10px !important;
-moz-border-radius-topright:10px !important;
-webkit-border-top-left-radius:10px !important;
-webkit-border-top-right-radius:10px !important;
border-top-left-radius:10px !important;
border-top-right-radius:10px !important;
}
/* End rounded corners */
This code will round them for you




Comment