Hello
If you go to my site http://www.ryanspahn.net you will see there is a white box that is at the bottom of the mainbox(if looking IE) or not fitting in the mainbox(Firefox). I want to move this box up just right below the scrolling picture scroll.
I have tried various things with no sucess. Anyone have any idea what CSS attribute and dimensions I should use? Im trying to make two columns within this mainbox.
Cheers, Chaser
Please help - move box up CSS
Moderator: General Moderators
-
chaser7016
- Forum Commoner
- Posts: 34
- Joined: Sat Nov 04, 2006 3:22 pm
Code: Select all
#columnbox {
margin-top:-45px;
}It's kind of hard to see because of the messy code, but I think that this:
Should/can be changed to:
And then the css should be something like:
And after that, depending on your needs you might want to clear the containing box.
Another possibility is to place the columnbox first in the column and float it to the right.
Code: Select all
<div id="column">
<b>alfad;f - adfasdfasdfasfasdfa.</b><br>
<i><b>afdasfdasdfasdfasdf</b></i><br>
asdfasfadfsdfasdfasdfasfdfasdfasdf
<br>
<br>
<br>
<div id="columnbox"></div>
</div>Code: Select all
<div id="column">
<b>alfad;f - adfasdfasdfasfasdfa.</b><br>
<i><b>afdasfdasdfasdfasdf</b></i><br>
asdfasfadfsdfasdfasdfasfdfasdfasdf
<br>
<br>
<br>
</div>
<div id="columnbox"></div>
Code: Select all
#column {float:left; width: 350px; }
#columnbox { float:right; width:275px; }
Another possibility is to place the columnbox first in the column and float it to the right.
-
chaser7016
- Forum Commoner
- Posts: 34
- Joined: Sat Nov 04, 2006 3:22 pm