Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

how to remove the price background in one area? WordPress

  • SOLVED

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/

Answers (1)

2012-08-04

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.