XF 1.2 Moving Content Over

KeVo

Active member
How do I move the contents of a post more to the right? As you can see in the following screen shot, the avatar edits I made make it cut into the post. Help is greatly appreciated. :)

http://prntscr.com/1vad5a
 
Increase the left margin on that content.

Admin CP -> Appearance -> Templates -> EXTRA.css

Add this:

Code:
.message .messageInfo,
#QuickReply
{
	margin-left: 186px !important;
}
 
Top Bottom