BassMan Well-known member Aug 14, 2013 #1 Hi! How to open admin link (on the top right corner) in new window? Where can I find the code?
Jeremy in memoriam 1991-2020 Aug 14, 2013 #2 In the template moderator_bar find this code: Code: <a href="admin.php" class="acp adminLink"><span class="itemLabel">{xen:phrase admin_control_panel_short}</span></a> Change it to this (to add target="_blank"): Code: <a href="admin.php" class="acp adminLink" target="_blank"><span class="itemLabel">{xen:phrase admin_control_panel_short}</span></a> Upvote 0 Downvote
In the template moderator_bar find this code: Code: <a href="admin.php" class="acp adminLink"><span class="itemLabel">{xen:phrase admin_control_panel_short}</span></a> Change it to this (to add target="_blank"): Code: <a href="admin.php" class="acp adminLink" target="_blank"><span class="itemLabel">{xen:phrase admin_control_panel_short}</span></a>
BassMan Well-known member Aug 14, 2013 #3 I'm so happy I've moved to XenForo Excellent support, fast and kind. Thank you XenForo team! Upvote 0 Downvote
Scarface Member Jun 8, 2014 #4 i have a question related to this how do i move it to the very left? Upvote 0 Downvote
Russ Well-known member Jun 8, 2014 #5 Scarface said: i have a question related to this how do i move it to the very left? Click to expand... Can add this to extra.css Code: html #moderatorBar .adminLink { float: left; } Upvote 0 Downvote
Scarface said: i have a question related to this how do i move it to the very left? Click to expand... Can add this to extra.css Code: html #moderatorBar .adminLink { float: left; }