• I have been trying for some time without success. Is it possible to add line breaks in a page? I am using the pages as..well pages…for other content on my site that has nothting to do with my blog. I use heavy XHTML and was wondering if I could use line breaks to cause long spans of text to be seperated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You be better off using a div.

    Put this in your styles.css file: (you should probably add the #ID .spacer)

    #your_area_id .spacer {
    height: 200px; /* adjust to desired height */
    clear: both;
    }

    Put this in your page template where you want the space added:

    <div class=”spacer”></div>

    Thread Starter ericalmighty

    (@ericalmighty)

    Oh awesome! I had no idea spacers could be used for that purpose. You learn something everyday! Thanks meta 😉

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Line Breaks in Pages?’ is closed to new replies.