Trouble Moving Notification Link

Flybird

Acquaintance
Joined
May 15, 2013
Messages
42
Reaction score
0
FP$
256
We recently installed a new theme on our forum, and we really like it, however when using the Profile Comments plugin, the notification link is a bit out of place. What we want to do is move it to the top links.
Here is what we are using.
Forum Software: MyBB
Theme: http://mods.mybb.com/view/sky-cotton
Profile Comments Plugin: http://mods.mybb.com/view/profile-comments
Forum: http://republicofvoices.net
Scroll to the bottom of the page to change to the Sky Cotton theme.

This is what it looks like:
34fU791.webp

We want to move the Profile Comments link and notification thing down to the Top Links. (Next to Help) We tried moving the code that is used to display the Profile Comments to the Top Links, but it didn't work.
Code:
{$unreadreports}<!-- ProfileComments -->
{$comments_alert}<!-- /ProfileComments -->

We've also tried to add toplinks by using an attribute (href="site_destination"{otherthings}) to get it to work also, but no matter what we do, the profile comments button stays as boring gray text in the corner.

Any suggestions of what to do? If you need any more information, let me know and I'll try to find it right away.

Edit: We figured it out!
 
<br /> between the 2, should at least move it one line down, which, in theory, should be fine. Other than that, it'll be hacky to make the box larger and make it look good.

Good luck
 
Thanks, but is there a way to remove it from where it is completely to put it elsewhere? I think it would still look awkward like that just moved down a line.
 
Code:
<div id="container">
                <a name="top" id="top"></a>
                <div id="header">
                        <div id="panel">
                                {$welcomeblock}
                        </div>
                        <div class="logo_left">
                                <div class="logo_right">
                                        <div id="logo">
                                                <a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
                                                <form action="search.php" method="post" style="padding-top: 8px;">
                                                        <input type="hidden" name="action" value="do_search" />
                                                        <input type="hidden" name="postthread" value="1" />
                                                        <input type="hidden" name="forums" value="all" />
                                                        <input type="hidden" name="showresults" value="threads" />
                                                        <input type="text" name="keywords" value="Search..." onfocus="if(this.value == 'Search...') { this.value = ''; }" onblur="if(this.value=='') { this.value='Search...'; }" class="textbox" style="padding: 6px 26px 6px 6px; width: 140px; margin-left: 13px;" /><input type="submit" value="" class="search_go" />
                                                </form>
                                        </div>
                                </div>
                        </div>
                        <div class="menu">
                                <ul>
                                        <li><a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a></li>
                                        <li><a href="{$mybb->settings['bburl']}/search.php">{$lang->toplinks_search}</a></li>
                                        <li><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a></li>
                                        <li><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></li>
                                        <li><a href="{$mybb->settings['bburl']}/misc.php?action=help">{$lang->toplinks_help}</a></li>
                                </ul>
                        </div>
                </div>
                <div id="content">
                        {$pm_notice}
                        {$bannedwarning}
                        {$bbclosedwarning}
                        {$unreadreports}<!-- ProfileComments -->
                        {$comments_alert}<!-- /ProfileComments -->
                        {$pending_joinrequests}
                        <navigation>
                        <br />

That should be it.<br /><br />-- 11 Jun 2013, 10:29 --<br /><br />Thanks for trying to help! But we figured out how to get it working.
Thanks again for the help. c:
 
Back
Top Bottom