• I hadn’t noticed until my own mother pointed it out, but the images I have been posting to go along with my articles on Fresh Politics (www.freshpolitics.us) have not been showing up in Internet Explorer. What’s up with that??

    I’ve been using the following tag:

    //<img src=”blah” class=”alignleft”>

    Anyone know how to fix this error? I love firefox, hate IE….

Viewing 1 replies (of 1 total)
  • Thread Starter freshpolitics

    (@freshpolitics)

    Ah ok, I credit the answer to self determination. Perhaps it’s out there on this forum already tho, but I couldn’t find it. Either way, here’s how to fix the missing images dilemma:

    Under the CSS image tags, which looked like this:

    img.alignright {
    padding: 4px;
    margin: 0 0 2px 7px;
    display: inline;
    }

    IE required a ” position:relative;” tag to top it off. They were reserving space, but the background was coming up on top of the image. So the final product took only simple mods:

    img.alignright {
    position:relative;
    padding: 4px;
    margin: 0 0 2px 7px;
    display: inline;
    }

    img.alignleft {
    position:relative;
    padding: 4px;
    margin: 0px 7px 4px 2px;
    display: inline;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Missing Images’ is closed to new replies.