<em>@bossies 223597 wrote:</em><blockquote>where can i disable the round corner for a uniform look across all browsers?</blockquote>
you should go to file templatesja_community_pluscsscss3.css and edit these styles:
#ja-mainnav .main {
border-radius: 5px 5px 0 0;
-moz-border-radius: 5px 5px 0 0;
-webkit-border-radius: 5px 5px 0 0;
} // for header
input, select, textarea, .inputbox {
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
box-shadow:inset 0 0 5px rgba(0, 0, 0, .1);
-moz-box-shadow:inset 0 0 5px rgba(0, 0, 0, .1);
-webkit-box-shadow:inset 0 0 5px rgba(0, 0, 0, .1);
} // for input, select, textarea, .inputbox
#ja-botsl .main {
border-radius: 0 0 5px 5px;
-moz-border-radius: 0 0 5px 5px;
-webkit-border-radius: 0 0 5px 5px;
} // for the bottom
to set the value of ***border-radius to be 0:
border-radius: 0 0 0 0;
-moz-border-radius: 0 0 0 0;
-webkit-border-radius: 0 0 0 0;
Otherwise, you can search keyword “border-radius” in this file to edit the round corner of what element you need.
Regards,