Most times we really want to do want to do something different in our forum to make it and different from every other forum and to do that,we need that special change in the board or somewhere in the forum. Not too long ago we showed you how to put advert banner above the actual forum banner in SMF and now i will show you how to move members profile or forum profile to the right instead of the default left like it is in every SMF theme.
Log into your Cpanel >> Themes >> Open theme >> css >> locate Index.css and find the code below
.postarea, .moderatorbar
{
margin: 0 0 0 16em;
}
Then replace the above code with the one below :
.postarea, .moderatorbar
{
margin: 0 16em 0 0;
}
Then also find this code below :
.poster { float: left; width: 15em; }
And also replace it with the below code :
.poster { float: right; width: 15em; }
Then save your code and that's it. Your forum profile and that of all members
will appear on the right side of the forum instead of the left.
I hope this post helps, please if you find any difficulty use the comment box.
Most times we really want to do want to do something different in our forum to make it and different from every other forum and to do that,we need that special change in the board or somewhere in the forum. Not too long ago we showed you how to put advert banner above the actual forum banner in SMF and now i will show you how to move members profile or forum profile to the right instead of the default left like it is in every SMF theme.
Log into your Cpanel >> Themes >> Open theme >> css >> locate Index.css and find the code below
.postarea, .moderatorbar
{
margin: 0 0 0 16em;
}
Then replace the above code with the one below :
.postarea, .moderatorbar
{
margin: 0 16em 0 0;
}
Then also find this code below :
.poster { float: left; width: 15em; }
And also replace it with the below code :
.poster { float: right; width: 15em; }
Then save your code and that's it. Your forum profile and that of all members
will appear on the right side of the forum instead of the left.
I hope this post helps, please if you find any difficulty use the comment box.

Comments
Post a Comment