Papa Cosmos
|
Posted:
May 27, 2007 8:12 PM
To move your friends to the left column and move your comments up to where your friends used to be you can use this:
<style>
.friendSpace {position:relative; left:-330px; top:100px;}
.friendsComments {position:relative; left:0px; top:-400px;}
</style>
You will need to make some adjustments tho, based on how long your left and right columns are.
Adjust the left and top numbers in the .friendSpace code to position the friends. A negative number for top moves the friends up, a positive number for top moves the friends down.
Adjust the left and top numbers in the .friendsComments code to position the comments. A negative number for top moves the comments up, a positive number for top moves the comments down.
|