Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Of course… i should have caught that ??

    There may be an easier way but I like css.

    You could set up specific css rules to control how text flows around an image depending on where you want the image to appear.

    Adjust the padding to suit your situation. I’ve applied both class and id attributes to each css rule so that you don’t have to worry about which you use, class or id on your images.

    #imglft, .imglft {
    	float: left;
    	padding: 5px;
    	margin: 0;
    }
    #imgrht, .imgrht {
    	float: right;
    	padding: 5px;
    	margin: 0;
    }
    #imgcnt, .imgcnt {
    	margin-right: auto;
    	margin-left: auto;
    	padding: 5px;
    	/* may need for IE */
    	text-align: center;
    }

    Then just apply it to any image.

    <img class="imglft" src="/images/someimage.jpg" alt="" />

    That should do it.

    If you look into the themes directory for the one you are using, open the style sheet for that theme and look for: #content

    If not there you can add it in using:

    #content .post {
    	margin-bottom: 40px;
    }

    for example

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