I have added some extra boxes using Smart theme (not yet uploaded). I would like to reduce the size of the gap between the boxes but don't know how to. Any advice please?
The boxes in that theme are created using nested tables. One box will end with a </table> and the next starts with <table>
Take a look for any additional line breaks <BR> or text tags <P> between the above table tags. You need just the 1 <BR> tag to create a bit of space or try removing altogether for the desired effect.
Couldn't find any <br> tags so commented out <p> </p> and added single <br> which seems to have done the trick. Not sure what the means. Info appreciated.
the nbsp; is ascii code for "non breaking space" ... this in effect tells the browser that there is something occupying the space and creates a line (often a bigger space than a break)... a blank space in effect ... it is bad practice to use just <p></p>
Comment