0

I'm trying to move the image for Trip Advisor on this page (at the bottom right). As seen in this screenshot, it needs to move up and to the right to fit in the orange/pink box.

screenshot

When I apply negative margin, the image gets hidden behind the orange/pink box. I've tried adding various z-index values to make it appear on-top, however nothing seems to work.

Any idea what I'm doing wrong?

Note: This image (for Trip Advisor) is reused on the home page as well. Any CSS styling applied should not affect the positioning of the image on the home page.

4

1 に答える 1

2

No problem! Hope this helps.

.TA_rated {
  width: 155px;
  height: 77px;
  position: absolute;
  left: 265px;
  top: -6px;
  margin: 0;
}

Edit: only tested in Safari, but should be OK elsewhere...

于 2012-11-02T02:46:01.040 に答える