Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[CSS]Suggestion.

Joined
Jun 1, 2008
Messages
2,232
Reaction score
1,007
Normally I have 2 images as Footer floating. One on the left and on the right. Just like this:
Samus. - [CSS]Suggestion. - RaGEZONE Forums

But if I resize it to something smaller, the 2nd image goes below the other one:
Samus. - [CSS]Suggestion. - RaGEZONE Forums

Suggestions?

Both images needs to be stuck on their sides. I was thinking about a minimum width size for the site itself..
 
I'm sexy and I know it :)
Joined
Oct 21, 2008
Messages
811
Reaction score
350
Normally I have 2 images as Footer floating. One on the left and on the right. Just like this:
Samus. - [CSS]Suggestion. - RaGEZONE Forums

But if I resize it to something smaller, the 2nd image goes below the other one:
Samus. - [CSS]Suggestion. - RaGEZONE Forums

Suggestions?

Both images needs to be stuck on their sides. I was thinking about a minimum width size for the site itself..

Nothing to change about it, it's 2 divs which both get aligned right or left. When the 2 together become wider than your screen's resolution they will be placed on a new line. :mad:
I don't like this in css, but nothing you can change about it, divs won't flow over eachother unless you use layers.
 
Custom Title Activated
Member
Joined
Dec 10, 2007
Messages
2,194
Reaction score
263
This should work:
Code:
body {
  background-image: url('http://img.sharefast.net/1288309480863241584207.png'), url('http://img.sharefast.net/1288309480863241584207.png');
  background-position: right bottom, left bottom;
  background-repeat: no-repeat;
}
 
Joined
Jun 1, 2008
Messages
2,232
Reaction score
1,007
This should work:
Code:
body {
  background-image: url('http://img.sharefast.net/1288309480863241584207.png'), url('http://img.sharefast.net/1288309480863241584207.png');
  background-position: right bottom, left bottom;
  background-repeat: no-repeat;
}

Worked, thanks.
Result: the images merge with each other, that's fine.
 
Back
Top