Re: Adding a blank line..
That's because you have the 2nd if statement - the one with the spaces, nested within the 1st if statement. That should come after the 1st statement.
Better would be to have an else in there instead.
{if $discount gt 0}
code
{else}
<br /><br />
{/if}
That would solve your problem - although you might want to consider using an image spacer for the blank space, rather than line breaks, then you can control the actual space easier using css, and also, it will work better in different browsers.
|