MyBB Community Forums

Full Version: change user data left to right ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello
how can i change user data from left to right ?

[Image: do.php?thmb=140]
Go to admin panel -> Configuration -> Languages
Click on options button and than "Edit language pack properities"

Find option "Right-to-left" and put here yes if you want right to left or no if you want left to right style
i try it but that make the forum to the right

i want only user info apper in the right not left
So you want user profile in post to be on right side of post?
i need user profile in post be on right side please
Go to Admin panel -> Templates & Styles -> Themes (choose theme you want edit)
Open global.css
Find:
.post.classic .post_author {
	border: 1px solid #ddd;
	float: left;
	width: 15%;
	margin: 0 1% 15px 0;
	border-left: 0;
	padding: 5px 1%;
}
And change with:
.post.classic .post_author {
	border: 1px solid #ddd;
	float: right;
	width: 15%;
margin: 0px 0px 15px 1%;
	border-right: 0;
	padding: 5px 1%;
}

Now go to css3.css
Find:
.post.classic .post_author {
	-moz-border-radius: 0 6px 6px 0;
	-webkit-border-radius: 0 6px 6px 0;
	border-radius: 0 6px 6px 0;
}
And change with:
.post.classic .post_author {
	-moz-border-radius: 6px 0 0 6px;
	-webkit-border-radius: 6px 0 0 6px;
	border-radius: 6px 0 0 6px;
}