View Full Version : Help


Mrs Barrett
12-02-2005, 06:43 PM
Hi I am having probs with my site which is not letting me have gaps between each line
I have this code
Party Princess Set 3/4 Years £3.50
<!-- begin code provided by createblog.com -->
<a href="http://i9.photobucket.com/albums/a77/MrsDewar111/PartyPrincessset.jpg" target="_blank">
<img src="http://i9.photobucket.com/albums/a77/MrsDewar111/PartyPrincessset.jpg" height="50" border="0"></a>
<!-- end code provided by createblog.com -->

what do I need to add a line without pressing return
this is my site -www.freewebs.com/christina_strikes_back

harmor
12-02-2005, 06:48 PM
I'm not sure what you mean but try

<!-- begin code provided by createblog.com -->
<a href="http://i9.photobucket.com/albums/a77/MrsDewar111/PartyPrincessset.jpg" target="_blank">
<img src="http://i9.photobucket.com/albums/a77/MrsDewar111/PartyPrincessset.jpg" height="50" border="0"></a><br />
<!-- end code provided by createblog.com -->

Notice the <br />

SparkleBleed
12-02-2005, 07:55 PM
Wherever you need a gap insert this

<br>

That adds a line break.

So, your code would look like this

Party Princess Set 3/4 Years £3.50<br>
<!-- begin code provided by createblog.com -->
<a href="http://i9.photobucket.com/albums/a77/MrsDewar111/PartyPrincessset.jpg" target="_blank">
<img src="http://i9.photobucket.com/albums/a77/MrsDewar111/PartyPrincessset.jpg" height="50" border="0"></a>
<!-- end code provided by createblog.com -->