• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[CSS]Suggestion.

Custom Title Activated
Loyal Member
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
Loyal 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;
}
 
Custom Title Activated
Loyal Member
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