• i am having trouble getting images to drop down below one another on a page i am working on.

    here is the page im working on:
    https://mra.powweb.com/?page_id=38

    in the editor, i’ve tried all sorts of ways to make one image fall below another, to no avail. any ideas???

    thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter aowen

    (@aowen)

    strike that…not a web browser issue.

    It’s a css issue. Your troublesome images are assigned the alignleft class, and the following is in your theme’s style.css:

    .alignleft {
       float: left;
       margin: 0 10px 10px 0;
    }

    The float is what is causing it.

    Thread Starter aowen

    (@aowen)

    thanks for the suggestion.

    so i tried that, and then i tried deleting every instance of a float command in the whole style sheet, and nothing happened to the images.

    any other ideas?

    i have the same problem…. all images are at the left of the blog, even when i set them to be centered or right.

    There is no “.alignleft” in the style.css file so i don’t know what to do.

    Any help?

    @drgen

    There is no “.alignleft” in the style.css file so i don’t know what to do.

    The class doesn’t have to be called .alignleft to perform the same function. The class name is arbitrary. Look for anything related to images in your stylesheet. Depending on your theme, it could be named anything.

    Thanks Chrisber!
    I’ve checked all my style.css but nothing…
    then i realize that it does some import
    @import "lib/compressed.css"

    so i checked there and found the problem ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘image/text spacing problem’ is closed to new replies.