• i am using ‘exhibit’ pluggin

    in IE image align works fine

    in firefox it is not (see http://www.gastarbeiter.org/storytelling/)

    i tried, i mean i tried, checked forums, searched, applied clears and lefts and inlines…

    the css for the imagas as of now is

    .image a {
    color: #fda999;
    border: 0px;
    margin: 0px 30px 10px 0px;
    float: left;
    clear: left
    }

    image {
    border: 0px;
    margin: 0px 30px 10px 0px;
    float: left
    clear: left
    }

    what can i do to get the same result in firefox in ie

    thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • What you want is:

    img {
    border: 0px;
    margin: 0px 30px 10px 0px;
    float: left;
    clear: left;
    }

    A css declaration without an initial . (class) or # (id) declares properties for an HTML tag, of which there is no image. Also, to limit it to your posts, try:

    .storycontent img {

    Thread Starter zozon

    (@zozon)

    thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘firefox image align’ is closed to new replies.