icon Get the most out of Surmunity, read our tips here! Need an interesting blog to read? You've got to read the Surpass Blog! | Welcome! Please register to access all of our features.
Old September 22nd, 2006, 4:00 PM   #1 (permalink)
DemonicAngel
Super #1
 
twirp's Avatar
 
Joined in Aug 2004
Lives in Wherever The World Takes Me
Hosted on Pass76
1,847 posts
Gave thanks: 28
Thanked 35 times
Div issue with background

I'm trying to make a layout (that's fluid I think...?)
But whenever it starts to scroll, the background doesn't match the image.
Click & See
The css is:
Code:
body{
	background: #2B452C url(http://tyl.cc/images/random_bg_l.jpg) repeat-y left;
	overflow: hidden;
}

#container{
	background: url(http://tyl.cc/images/random_bg_r.jpg) repeat-y right;
	overflow: auto;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
}

#topbar{
	background: url(http://tyl.cc/images/random_02.jpg) repeat-x;
	width: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 500px;
}

#topleft{
	left: 0px;
	top: 0px;
	background: url(http://tyl.cc/images/random_01.jpg) repeat-x;
	width: 401px;
	height: 500px;
	position: absolute;
}

#topright{
	right: 0px;
	top: 0px;
	background: url(http://tyl.cc/images/random_03.jpg) repeat-x;
	width: 345px;
	height: 500px;
	position: absolute;
}

#menu{
	position: absolute;
	top: 279px;
	right: 20px;
	width: 180px;
}
and inside the body:
Code:
<div id="container">
<div id="topbar"></div>
<div id="topleft"></div><div id="topright"></div>

<div id="menu">
<!-- Menu -->
Menuness
<!-- Menu -->
</div>

</div>
Thanks for any help. (and I hope this belongs here)
__________________
You wear Vans so high school kids will think that you can skate. He wears Vans because he can skate. TwiRp wears Vans because they were on sale. Pass76 wants Vans.
twirp is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old September 22nd, 2006, 4:13 PM   #2 (permalink)
H
after g, before i
Resident.
 
H's Avatar
 
Joined in Jul 2004
Lives in N,BC,CA
8,092 posts
Gave thanks: 48
Thanked 131 times
You're not very clear on what exactly isn't matching up... Is it when the window is narrow, the anime-ish figure begins to get cut-off?
H is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old September 23rd, 2006, 3:54 PM   #3 (permalink)
DemonicAngel
Super #1
 
twirp's Avatar
 
Joined in Aug 2004
Lives in Wherever The World Takes Me
Hosted on Pass76
1,847 posts
Gave thanks: 28
Thanked 35 times
Quote:
Originally Posted by Haugland View Post
You're not very clear on what exactly isn't matching up... Is it when the window is narrow, the anime-ish figure begins to get cut-off?
I guess it's not working only in firefox.
In firefox, the right navigation background doesn't match up with the image.
__________________
You wear Vans so high school kids will think that you can skate. He wears Vans because he can skate. TwiRp wears Vans because they were on sale. Pass76 wants Vans.
twirp is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old November 22nd, 2006, 1:08 AM   #4 (permalink)
Registered User
Fresh Surpasser
 
Joined in Nov 2005
Lives in Florence
18 posts
Gave thanks: 0
Thanked 0 times
Code:
body{
	background: #2B452C url(http://tyl.cc/images/random_bg_l.jpg) repeat-y left;
	overflow: hidden;
}
You should have

Code:
body {
background: #2B452C;
background-image: url(http://tyl.cc/images/random_bg_l.jpg);
background-repeat: repeat-y;
background-position: left;
overflow: hidden;
}

If that doesn't work then I dunno xD
__________________
Last Rebirth
Aidenn RPG (IRC)
LastRebirth is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On