Forum Moderators: not2easy
Now I'm not great at css, but I've managed to customize almost all of that template...
so is there a way I can code this to remove those annoying <br>'s added by volusion's hardcoding?
I really appreciate any help guys...
[edited by: swa66 at 10:54 pm (utc) on July 15, 2009]
[edit reason] No URLs, please see ToS and forum charter [/edit]
for example, if the shopping cart looks like this:
<div id="cart">
Item 1 <br /><br />
Item 2 <br /><br />
Total: $9.99<br /><br />
</div>
You could add the following to your CSS:
#cart br {height: 2px}
If all the BR's are in one div and you don't want ANY of the BR's to show then do something like:
#yourid br {display:none;}
You need to be very cautious with this and do lots of testing but it is a simple fix if the BR's are all located inside divs where you don't need any showing.