I need to adjust a tab link location when the browser gets below a certain width. I've looked around and haven't been able to make this work. It never readjusts. Here is the code I'm using
$(window).resize(
function pageResize() {
$screenSize = $(window).width();
if($(screenSize) < 546){
$("#ce").css("left", "80.5%");
$("#ce").css("marginLeft", "-70px");
}
});
$(screenSize)use$screenSize.ifcondition should beif($screenSize...)