MyBB Community Forums

Full Version: Flatty Theme: Mod and Admin CP Links
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

For the life of me, I cannot find where the code is to edit the appearance of the Admin CP and Mod CP links. All I can find is theĀ {$modcplink} andĀ {$admincplink}, which I've already moved to where I want them. Now I want to change their appearance and I just can't find where to make those changes.

Any help would be greatly appreciated.
Mod CP link comes from header_welcomeblock_member_moderator template of the theme like below
<li><a href="{$mybb->settings['bburl']}/modcp.php" class="modcp"><i class="fa fa-bolt" style="color: #fcb941;"></i> {$lang->welcome_modcp}</a></li>

Admin CP link is from header_welcomeblock_member_admin template
<li><a href="{$mybb->settings['bburl']}/{$admin_dir}/index.php" class="admincp"><i class="fa fa-cog" style="color: #e76b6b;"></i> {$lang->welcome_admin}</a></li>

[templates guidance]
Thank you!!