Hello, I'm wondering if someone could help me with removing additional moderators text from the board. You know what I mean? I don't want their nick to be on my board topics. Any help would be appreciated, if I need to clarify just say so, thanks.
I'm not sure exactly what you're talking about, so clarification would be helpful.

You see, this is what I don't want. I don't want anymore global mods for now.... but I do want to add some section mods, only problem is I don't want their nick to show up on the board like this cuz I like a cleaner look. Is there a way to keep the 'section moderator' nicks off the board?
Yes there is, navigate to your theme's folder and open up BoardIndex.template.php. After you do that search for and remove the code below:
// Show the "Moderators: ". Each has name, href, link, and id. (but we're gonna use link_moderators.)
if (!empty($board['moderators']))
echo '<i class="smalltext"><br />
', count($board['moderators']) == 1 ? $txt[298] : $txt[299], ': ', implode(', ', $board['link_moderators']), '</i>';
Thank you very much!