Recent Topics

Members
Stats
  • Total Posts: 10,749
  • Total Topics: 1,374
  • Online today: 313
  • Online ever: 879
  • (Jan 21, 20, 05:49:15 PM)
Users Online
Users: 0
Guests: 517
Total: 517

Move User info from left to right

Started by ricland, Oct 20, 11, 05:06:29 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ricland

I'm using the Moonshine theme and want to mover the user info (including avatar) from left to right.

Crip

hi,
I can get you the code for that asap!
I have become comfortably numb!


No PM's for Support unless invited! 

I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -
TOTM Winner.

ricland


Crip

Just check back a bit later this day..

I will  have it..
I have become comfortably numb!


No PM's for Support unless invited! 

I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -
TOTM Winner.

Crip

css/index.css

Find:

#userarea {
float: right;
padding: 1.5em 25px 0 0;
text-align: right;
width: 38em;
color: #FFFFFF;
font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
#userarea a:link, #userarea a:visited {
color: #FFFFFF;
}
#userarea a:hover {
color: #A5DAFD;
text-decoration: underline;
}
#my-avatar {
float: right;
margin-left: 1em;
padding-top: 3px;
}


Replace With:


#userarea {
float: left;
padding: 1.5em 25px 0 0;  <======Adjust=====>
text-align: left;
width: 38em;
color: #FFFFFF;
font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
#userarea a:link, #userarea a:visited {
color: #FFFFFF;
}
#userarea a:hover {
color: #A5DAFD;
text-decoration: underline;
}
#my-avatar {
float: left;
margin-left: 1em;  <======Adjust=====>
padding-top: 3px;  <======Adjust=====>
}


Any problems post here.
I have become comfortably numb!


No PM's for Support unless invited! 

I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -
TOTM Winner.

ricland