Viewing 5 replies - 1 through 5 (of 5 total)
  • Your site is not viewable — “coming soon” page only. Unfortunately, it’s almost impossible to help with CSS issues without seeing the page. Try using Firebug to look at what is going on with the CSS.

    Thread Starter twenty10

    (@twenty10)

    You were really quick – I have disabled the maintenance mode by now.

    Looks like this CSS is messing it up – line 1 in style.css:

    #content img {
        float: right;
        margin: 3px 0 15px 15px;
    }

    Try removing that code entirely.

    Update, just noticed that removing the code above will mess up images on your other pages. Also that all your CSS is on one line — ???? That’s really hard to work with.

    So to deal with the issue at hand, you can use the unique class for that image and try adding this to a NEW LINE in your CSS file:

    #content img.wp-image-532 {
    float: none;
    margin: 0;
    }

    Adjust the left margin if need be.

    Thread Starter twenty10

    (@twenty10)

    Great, that solved my problem!

    I will ask the guy who has programmed the page about the CSS mess.

    Thanks again!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to position an image’ is closed to new replies.