Simple Machines Community Forum

Customizing SMF => Modifications and Packages => Mod Requests => Topic started by: njtweb on June 18, 2019, 07:21:51 AM

Title: Move member/guest bit
Post by: njtweb on June 18, 2019, 07:21:51 AM
Hi, before I request paid support, is there a mod that will do this? To me the member info is wasting valuable space which could instead be used for topic/post content. I already removed post count, and group membership id, hopefully today I'll be removing the trader system.

Ultimately I only want member name or guest, that is it. My site is all older adults and nobody cares about anything but the name. The image shows where I'd like to move the member/guest id.

Thank you to all in advance.
Title: Re: Move member/guest bit
Post by: Kindred on June 18, 2019, 08:55:20 AM
That is 100% based on theme.... there are some themes that put the information there.
Title: Re: Move member/guest bit
Post by: Illori on June 18, 2019, 09:00:24 AM
https://custom.simplemachines.org/mods/index.php?mod=2924 might help, it may or may not work with your theme though.
Title: Re: Move member/guest bit
Post by: @rjen on June 18, 2019, 10:22:50 AM
Quick fix by editing your index.css..

Find

/* poster and postarea + moderation area underneath */
.post_wrapper
{
float:left;
width:100%;
}
.poster
{
float: left;
width: 15em;
}
.postarea, .moderatorbar
{
margin: 0 0 0 16em;
}


and add below that

.poster
{
width: 100%;
}
.postarea, .moderatorbar
{
margin: 0 0 0 1em;
}
Title: Re: Move member/guest bit
Post by: njtweb on June 18, 2019, 12:16:23 PM
Thanks @rjen! That's perfect.
Title: Re: Move member/guest bit
Post by: Kindred on June 18, 2019, 01:21:13 PM
why would you ADD that?


replace

.poster
{
float: left;
width: 15em;
}
.postarea, .moderatorbar
{
margin: 0 0 0 16em;
}


with this

.poster
{
float: left;
width: 100%
}
.postarea, .moderatorbar
{
margin: 0 0 0 1em;
}

Title: Re: Move member/guest bit
Post by: @rjen on June 18, 2019, 01:22:28 PM
Simple: he did not state what he wanted to do with do with the moderatorbar!

(And I said it was a quick fix, right?)
Title: Re: Move member/guest bit
Post by: njtweb on June 18, 2019, 02:30:42 PM
I don't have and won't ever have moderators. Just me, I don't have any posting policies. If people become a PITA, I just tell them to stop being a PITA. If they post something inappropriate, I ask them to stop. If they don't listen. I edit their post and lock it. I've only had 2 degenerate old guys who caused issues and I've taken care of them since.