I am currently using jQuery UI Accordion to create collapsible sections that expand when clicked. In order to enhance the appearance, I have applied a background image to the header of each section like this:
Check out my jQuery UI Accordion Demo here
Upon closer inspection of the section headers, you may notice a gap at each rounded corner. While removing the following CSS would eliminate these gaps, I would still prefer to use the image for aesthetic purposes:
background: url("http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png") repeat-x scroll 50% 50% #DFEFFC;
Is there a solution that allows me to keep the image while also getting rid of the gaps?