Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Lining up with the Background Re: Lining up with the Background

#46891
Chris Coyier
Keymaster

I’m certain there is a way to get this done, but I think we’ll just need a little more information. Is the repeated text background going to be real web text, or an image? Also, is the "logo" going to be real web text or an image?

If they are both going to be images, make the repeating background text centered like:

Code:
body { background: url(background-text.png) center center repeat; }

Then your centered content:
#page-wrap { width: 960px; margin: 0 auto; position: relative; }

With position relative on the page wrap, now you can absolutely position the logo within that div (right where ever you need it) and because both that div and the repeating background are centered, it will remain in a consistent location despite the browser window size.