• If you go https://skurfboards.com/go-longboarding-day.htm you will see that my image is aligned right. It seems to be the case whenever I try posting an image. In WP admin i dont have the option to change the alignment becuase im using mac, with safari. Ive tried typing align=”left” but it still doesnt work. Any suggestions?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter l0zo

    (@l0zo)

    I downloaded that and installed it into plugin directory. Then activated in wordpress and clicked the “It will not be enabled until you have configured it via the Options >> ImageManager menu. *** Requires WordPress 2.0” link.

    And it took me here – https://skurfboards.com/wp-admin/options-general.php?page=imagemanager-plugin.php and said “Cannot load imagemanager-plugin.php.”

    Did you put the entire ImageManager folder in the plugins folder being careful not to do a double folder.
    When correct, it should look like thi:
    wp-content/plugins/ImageManager/abunchoffiles

    Thread Starter l0zo

    (@l0zo)

    Yes i did, i just drag the folder directly into the plugins folder

    #1 you have an unclosed tag in your header. It’s possible this is contributing.

    <div id="header.jpg">
    <a href="https://skurfboards.com">
    <img src="https://img180.imageshack.us/img180/7844/picture1rt0copygw8.gif" alt="skurfboards"
    </a>
    </div>

    Note: the “img” tag is unclosed. I’m surprised this isn’t causing more issues on your site.

    #2: you need to add ‘align=”left”‘ to a tag. “Align” is not a tag in and of itself. It’s a deprecated element anyway, so you shouldn’t be using it in the first place – but when you do, you should use it properly. You can have <p align="left"> or <img align="left"> but <p><align="left"> isn’t even close to being the right way to use it.

    #3 Your alignment problem is in your stylesheet. You have:

    .post img {
        float:right;
        border:1px solid #73A533;
        margin:0 0 10px 20px;
        }

    It’s the “float:right;” that’s doing it. All images are set to float right within your posts. Remove that line.

    Of course, once you do, your images won’t float at all, and the text will fall under them. You should add this to your stylesheet (at the bottom):

    img.left {
    float:left;
    margin:10px 10px 10px 0;
    }
    
    img.right {
    float:right;
    margin:10px 0 10px 10px;
    }

    Then, every time you put an image in your post, you need to edit the HTML to putt in ‘class=”left”‘ or ‘class=”right”‘ depending on which side you want the image to show up on.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Images always align right ( I cant change that)’ is closed to new replies.