cannot effect image with css – need to move up with a neg. margin

This is a really odd one. I cannot seem to affect this one image via css at all. Tried adding a class specifically for the image and also writing css to affect just the image, but zip. It won’t budge. The only thing that made it move was setting the neg. margin on the actual image, and there it only moved up about 40px and wouldn’t go any further (taken that off since then). The image in question is the “imagine” tab (wp-image-39) on this page:http://circore.com/haute/. The bits of css I’ve left are:

img.wp-image-39
{
margin-top:-120px;
background:#ff0000;
}
.toptab
{
margin-top:-120px;
background:#ff0000;
}

I’ve also tried affecting all images in the content area and a bunch of other things. The red background is just so I can see if something worked. Argh! Thanks so much!

Related posts

Leave a Reply

4 comments

  1. The last 3 classes of your CSS

    #text-4
    {
    font-size:11px;
    line-height: 15px;
    color: #000000;
    text-align: center;
    }
    
    img.wp-image-39
    {
    margin-top:-120px;
    background:#ff0000;
    }
    .toptab
    {
    margin-top:-120px;
    background:#ff0000;
    }
    

    are inside @media print { which is actually not closed.

    Put a closing bracket before #text-4 or wherever you need.