Hi,
I would like to remove the price background in the area that I have circled off on the screenshot attached. I want to keep all the backgrounds of the pricing for the page, just the empty one to be removed.
http://caffebuongiorno-norwood.com.au/pasta/
Arnav Joy answers:
try this
<script>
jQuery(document).ready(function($){
$('ul.one-column').find('li').eq(0).find('span.menu_price').css('background','none');
$('ul.one-column').find('li').eq(0).find('span.menu_price').css('border-right','0'); // if you also want to remove the orange border at right side
});
</script>
Ciaran Whelan comments:
your the master... thank you very much. Worked perfect.