<?php if ($_SERVER['REQUEST_URI']=='/catalog/') { ?> <style> .class-abc {width: 150px;} </style> <?php } ?>
<script> if (window.location.pathname == '/catalog') { $('.class-abc').css('width', '150px'); } else if (window.location.pathname == '/page/') { $('.class-abc').css('display', 'none'); } else { $('.class-abc').css('width', '350px'); } </script>