• I know this a real stupid question, but I can’t figure out how to make sure my text doesn’t wrap around my image as it does in this entry:
    http://www.chazsouthard.org/wordpress/?p=138

    I’d like the text to appear a few spaces under the image… where what I look to eliminate the text wrap function around my images in my content area? Thank you in advance for any help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator James Huff

    (@macmanx)

    Volunteer Moderator

    The quickest and easiest way would be to post the image in its own paragraph by surrounding it with <p> and </p> tags. Ex:

    <p><img src="image.jpg" alt="the image" /></p>

    Thread Starter chaz19

    (@chaz19)

    that didn’t seem to work — any other suggestions — or places to look in my CSS folder

    #content img {
    float: left; <—————–
    margin: 5px 15px 0 0;
    border: 1px solid #000;
    }

    Removing that drops the text. But then you won’t have text wrap when you want, so I’d suggest
    http://www.tamba2.org.uk/wordpress/graphicalcss/align/index.html

    If you want to remove the text wrap in that post only, change the image code to

    <img src="http://www.chazsouthard.org/images/panal.jpg" alt="panel of the top scientists and politicians, fighting for a cure for paralysis" style="float:none;display:block;" />

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘image and text alignment problem’ is closed to new replies.