-3

How can I make it so the Div "PSR-racing-3-slice-17_" in the footer is always 50 px right of the slider div?

If I absolutely positioned then it warps downsize the browser.

Here's the Page.

s0d4pop
  • 532
  • 4
  • 14
tom_means
  • 61
  • 5
  • Not sure what you're looking to do. Can you give us more detail in the question? – tb11 Jul 09 '12 at 19:46
  • the image in den div of slice 17 next to the slider div on the right side – tom_means Jul 09 '12 at 19:49
  • 1
    Please include relevant code here, rather than just linking to your site. See [Something on my website doesn't work. Can I just paste a link to it?](http://meta.stackexchange.com/questions/125997/something-on-my-web-site-doesnt-work-can-i-just-paste-a-link-to-it) for details. – jscs Jul 09 '12 at 20:25

1 Answers1

1

Try this

#PSR-racing-3-slice-17_ {
    width: 1115px;
    height: 132px;
    display: block;
    margin: auto;
}

#PSR-racing-3-slice-17_ img {
    float: right;
    margin-top: -90px;
}

Change margin-top to whatever you feel is right.

abhshkdz
  • 6,335
  • 1
  • 21
  • 31