• Hello. I’m using a WordPress blog for the following site:

    http://blog.smallworldtoys.com/

    However, as you can see, there are no spaces between paragraphs. Within WordPress, there are spaces between paragraphs but apparently they aren’t showing up when published. I tried inserting the HTML code <p> as well with no luck. I really can’t figure out what is going wrong. Any ideas are appreciated.

    Thanks,

    David

Viewing 2 replies - 1 through 2 (of 2 total)
  • well, if you want space between each paragraph, go to your theme editor and find style.css

    in there look for:

    .articleContent {
    	width: 570px;
    	padding: 10px 15px 0 15px;
    	background: url('images/articleBg.png') repeat-y;
    }

    under that add:

    .articleContent p {
             padding-bottom: 5px;
    }

    the 5px can be adjusted as needed
    (after making the change, press ctrl+f5 while looking at site to refresh browser and see changes)

    The theme defaulted to the 5px, but the stylesheet for some sort of store thingy is clobbering it.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘I can’t create space between paragraphs’ is closed to new replies.