I have made the lovely discovery that Jquery corners are not working on Chrome. Any solution for that?
I just figured out that when I turn of my config.js file that holds this (rounded corners functions):
$(document).ready( function(){
if(navigator.appName!="Microsoft Internet Explorer") {
$('.round_10px').corners("10px");
$('.bottom_round_10px').corners("10px bottom-left 10px bottom-right");
$('.bottom_l_round_10px').corners("10px bottom-left");
$('.bottom_r_round_10px').corners("10px bottom-right");
$('.bottom_top_l_round_10px').corners("10px top-left 10px bottom-left");
$('.bottom_top_r_round_10px').corners("10px top-right 10px bottom-right");
$('.round_40px').corners("40px");
}
My site looks how it should...so any known way around this besides turning this off for Chrome all togther?