You could just "not display" the offending <br />'s using your stylesheet.css file; just add (towards the bottom of the file):
That tells the browser that any <br /> tags that directly follow a tag with the class of listingDescription contained in a tag with the ID of productListing should not be displayedCode:#productListing .listingDescription+br { display: none; }


Reply With Quote
