vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=236)
-   -   Forum Home Enhancements - UKBL ~ Quality Drop Down Menu System (https://vborg.vbsupport.ru/showthread.php?t=203521)

UKBusinessLive 03-10-2009 05:19 PM

Quote:

Originally Posted by theparentpack (Post 1764677)
So is there a way for us to adjust our forums, as opposed to the MOD, so that this is centered and our forums do not require scrolling on any resolution monitor?

I doubt it, But someone may come up with it :)

theparentpack 03-10-2009 06:17 PM

Thanks, you rock! I am learning!


Quote:

Originally Posted by UKBusinessLive (Post 1764959)
Hi

All those points have been covered already, I will answer them below...

I love the color of the bar, but is there any way to change just the color of the actually drop down menus?

The first half of the code is the css, You can change different colors by simply changing the hex numbers - background-color:#000000;

there are serveral hex number referances in the css, that do different parts of the menu, Change the ones you need.

Code:

/* UKBL ~ Menu 0 */

        /*"""""""" (MAIN) Container""""""""*/       
        #qm0       
        {       
                width:auto;
                padding:5px 50px;
                margin:0px;
                background-color:#000000;
                background-image:url(qmimages/gradient_16.gif);
                border-width:1px;
                border-style:solid;
                border-color:#000000;
        }


        /*"""""""" (MAIN) Items""""""""*/       
        #qm0 a       
        {       
                padding:3px 30px 3px 3px;
                margin:0px 20px 0px 0px;
                background-color:transparent;
                color:#aaaaaa;
                font-family:Arial;
                font-size:11px;
                text-decoration:none;
                border-width:0px 1px 0px 0px;
                border-style:solid;
                border-color:#aaaaaa;
        }


        /*"""""""" (MAIN) Hover State""""""""*/       
        #qm0 a:hover       
        {       
                color:#ffffff;
                border-color:#ffcc33;
        }


        /*"""""""" (MAIN) Hover State - (duplicated for pure CSS)""""""""*/       
        #qm0 li:hover>a       
        {       
                color:#ffffff;
                border-color:#ffcc33;
        }


        /*"""""""" (MAIN) Active State""""""""*/       
        body #qm0 .qmactive, body #qm0 .qmactive:hover       
        {       
                color:#ffffff;
                border-color:#ffcc33;
        }


        /*"""""""" (SUB) Container""""""""*/       
        #qm0 div, #qm0 ul       
        {       
                padding:15px;
                background-color:#000000;
                border-width:1px;
                border-style:solid;
                border-color:#ffcc33;
        }


        /*"""""""" (SUB) Items""""""""*/       
        #qm0 div a, #qm0 ul a       
        {       
                padding:3px 20px 3px 5px;
                margin:0px;
                color:#cccccc;
                border-width:0px;
                border-color:#ffcc33;
        }


        /*"""""""" (SUB) Hover State""""""""*/       
        #qm0 div a:hover       
        {       
                color:#ffcc33;
                text-decoration:underline;
        }


        /*"""""""" (SUB) Hover State - (duplicated for pure CSS)""""""""*/       
        #qm0 ul li:hover>a       
        {       
                color:#ffcc33;
                text-decoration:underline;
        }


        /*"""""""" (SUB) Active State""""""""*/       
        body #qm0 div .qmactive, body #qm0 div .qmactive:hover       
        {       
                color:#ffcc33;
                text-decoration:underline;
        }


        /*"""""""" Individual Titles""""""""*/       
        #qm0 .qmtitle       
        {       
                margin:2px 5px 5px;
                color:#f6f6f6;
                font-family:Arial;
                font-size:11px;
                font-weight:bold;
        }


        /*"""""""" Individual Horizontal Dividers""""""""*/       
        #qm0 .qmdividerx       
        {       
                border-top-width:1px;
                margin:4px 5px;
                border-color:#aaaaaa;
        }


        /*"""""""" Custom Rule""""""""*/       
        ul#qm0 li .qmparent       
        {       
                background-image:url(http://www.ukbusinesslive.co.uk/forum/images/arrow_14.gif);
                background-repeat:no-repeat;
                background-position:90% 50%;

How can I make certain links open in a new window?

Below is a link from a Menu Structure

Code:

<li><a href="http://www.ukbusinesslive.co.uk/forum/calendar.php" title="My Calender">My Calender</a></li>
To get the link to open in a new browser window, what you do is add the target="_blank" attribute to your link tag, like this in your Menu Links area

Code:

<li><a href="http://www.ukbusinesslive.co.uk/forum/calendar.php" target="_blank" title="My Calender">My Calender</a></li>
https://vborg.vbsupport.ru/external/2010/01/30.png

Is there a way to add a different drop down menu to one of my additional CMPS pages?

Not sure what you mean by this? If your saying that you want to add a second different menu altogether then you can if you add it to the CMPS header, If you want simply to add a further menu item or new tab, then you simply copy a menu block from the code and paste it underneath the last menu block in the code, Below is a menublock you can use, just edit the links to your requirements

Code:

<li><span class="qmdivider qmdividery" ></span></li>
        <li><a class="qmparent" href="javascript:void(0);">CALENDER</a>

                <ul>
                <li><a href="http://www.ukbusinesslive.co.uk/forum/calendar.php" title="My Calender">My Calender</a></li>
                <li><a href="http://www.ukbusinesslive.co.uk/forum/calendar.php?do=add&type=single&c=1" title="Add Single Event">Add Single Event</a></li>
                <li><a href="http://www.ukbusinesslive.co.uk/forum/calendar.php?do=add&c=1" title="Ranged Event">Ranged Event</a></li>
                <li><a href="http://www.ukbusinesslive.co.uk/forum/calendar.php?do=add&type=recur&c=1" title="Recurring Event ">Recurring Event </a></li>
                </ul></li>

The Is there any way to make one of the sections just a button/link and not a drop down menu? If so, how?

if you simply want a button/link without dropdowns then just get the first part of the code

[CODE]
Code:

<li><span class="qmdivider qmdividery" ></span></li>
        <li><a class="qmparent" href="javascript:void(0);">CALENDER</a>

Delete the menu dropdown links below it, thats all these..

Code:

<ul>
                <li><a href="http://www.ukbusinesslive.co.uk/forum/search.php?searchid=167" title="Todays Post">Todays Post</a></li>
                <li><a href="http://www.ukbusinesslive.co.uk/forum/search.php?do=getnew" title="New Post">New Post</a></li>
                <li><a href="http://www.ukbusinesslive.co.uk/forum/search.php?searchid=167" title="Post Last 24 Hrs">Post Last 24 Hrs</a></li>
                <li><a href="javascript:void(0);">New Item</a></li>
                </ul></li>

and then you need to add your link to the menu tab so from this

Code:

<li><span class="qmdivider qmdividery" ></span></li>
        <li><a class="qmparent" href="javascript:void(0);">CALENDER</a>

you need to add your url here (In Red)

Code:

<li><span class="qmdivider qmdividery" ></span></li>
        <li><a class="qmparent" href="YOUR_URL.COM">TAB_NAME_HERE</a>

How can I add a link to mark forums read? Trying to replace the old navigation bar.

To make a link that when people press it will make all forums read, you'll need to add a url like this to the menu

Code:

http://yourforum.com/forumdisplay.php?do=markread
don't forget to change yourforum.com to the name of your own forum ;-)

I hope thats answered your questions,

;-)


UKBusinessLive 03-10-2009 06:23 PM

Quote:

Originally Posted by theparentpack (Post 1765107)
Thanks, you rock! I am learning!

:D No worries, give me a shout if you get stuck :up:

fukdawrld 03-15-2009 02:52 AM

I love this..thank you.

If anyone finds out a way to center the menu please PM me.

fukdawrld 03-15-2009 08:39 AM

On this site : http://www.aboxcafe.com/index.php

They have where there are sub menus that roll off to the right. How would I achieve this?

UKBusinessLive 03-15-2009 09:29 AM

Quote:

Originally Posted by fukdawrld (Post 1768516)
On this site : http://www.aboxcafe.com/index.php

They have where there are sub menus that roll off to the right. How would I achieve this?

Say for example here is your menu block

Code:

<li><span class="qmdivider qmdividery" ></span></li>
        <li><a class="qmparent" href="http://www.aboxcafe.com/forums/index.php">FORUMS</a>

                <ul>
                 
                  <li><a href="http://www.aboxcafe.com/forums/announcement.php?f=2" title="Forum Rules & Guidelines">Forum Rules & Guidelines</a></li>
                  <li><a href="http://www.aboxcafe.com/forums/forumdisplay.php?f=2" title="Announcements and News">Announcements and News</a></li>
                  <li><a class="qmparent" href="http://www.aboxcafe.com/forums/forumdisplay.php?f=189" title="AB Awards Ceremony">◊ <IMG SRC="http://img.photobucket.com/albums/v643/wanboa/16mpgn.gif" BORDER=0 NAME="">  AB Awards Ceremony</a>
                  <li><a class="qmparent" href="http://www.aboxcafe.com/forums/forumdisplay.php?f=5" title="Contests and Events">◊ Contests and Events</a>
                        <ul>

What we need to do is to add a new sub menu to the dropdowns and we do this like this (Shown in Red)

Code:

<li><span class="qmdivider qmdividery" ></span></li>
        <li><a class="qmparent" href="http://www.aboxcafe.com/forums/index.php">FORUMS</a>

                <ul>
                 
                  <li><a href="http://www.aboxcafe.com/forums/announcement.php?f=2" title="Forum Rules & Guidelines">Forum Rules & Guidelines</a></li>
                  <li><a href="http://www.aboxcafe.com/forums/forumdisplay.php?f=2" title="Announcements and News">Announcements and News</a></li>
                  <li><a class="qmparent" href="http://www.aboxcafe.com/forums/forumdisplay.php?f=189" title="AB Awards Ceremony">◊ <IMG SRC="http://img.photobucket.com/albums/v643/wanboa/16mpgn.gif" BORDER=0 NAME="">  AB Awards Ceremony</a>
                    <ul>
                  <li><a href="http://www.aboxcafe.com/forums/awards.php" title="Award Panel">• Award Panel</a></li>
                        </ul> </li>

                  <li><a class="qmparent" href="http://www.aboxcafe.com/forums/forumdisplay.php?f=5" title="Contests and Events">◊ Contests and Events</a>
                        <ul>

basically its the addition of a new <ul> Tag (In Blue) on the menu line which you want to break off, Don't forget to add the end tag too ;) </ul>

Hope that helps ;)

fukdawrld 03-15-2009 10:05 AM

Got it..thanks a bunch.

UKCE_Hitman 03-15-2009 07:40 PM

Installed thanks

UKBusinessLive 03-15-2009 10:29 PM

Quote:

Originally Posted by UKCE_Hitman (Post 1769018)
Installed thanks

Thanks Don't forget to click installed ;)

Redzzand 03-16-2009 12:46 PM

Installed & Nominated!!

Coleccromos 03-16-2009 09:20 PM

Copy the code for the VBOrg_menu1 and VBOrg_menu2 not display the menus.

Where can be the problem?

UKBusinessLive 03-16-2009 10:59 PM

Quote:

Originally Posted by Coleccromos (Post 1769985)
Copy the code for the VBOrg_menu1 and VBOrg_menu2 not display the menus.

Where can be the problem?


Are you trying to do a sub menu off a sub menu ? Like this

Code:

<li><span class="qmdivider qmdividery" ></span></li>
        <li><a class="qmparent" href="http://www.aboxcafe.com/forums/index.php">FORUMS</a>

                <ul>
                 
                  <li><a href="http://www.aboxcafe.com/forums/announcement.php?f=2" title="Forum Rules & Guidelines">Forum Rules & Guidelines</a></li>
                  <li><a href="http://www.aboxcafe.com/forums/forumdisplay.php?f=2" title="Announcements and News">Announcements and News</a></li>
                  <li><a class="qmparent" href="http://www.aboxcafe.com/forums/forumdisplay.php?f=189" title="AB Awards Ceremony">◊ <IMG SRC="http://img.photobucket.com/albums/v643/wanboa/16mpgn.gif" BORDER=0 NAME="">  AB Awards Ceremony</a>
                    <ul>
                  <li><a href="http://www.aboxcafe.com/forums/awards.php" title="Award Panel">• Award Panel</a></li>
                        </ul> </li>

                  <li><a class="qmparent" href="http://www.aboxcafe.com/forums/forumdisplay.php?f=5" title="Contests and Events">◊ Contests and Events</a>
                        <ul>


Coleccromos 03-17-2009 12:29 AM

Sorry friend, was putting the wrong code.

Clik intall and nominate.

Thanks for your time

UKBusinessLive 03-17-2009 06:08 AM

Quote:

Originally Posted by Coleccromos (Post 1770097)
Sorry friend, was putting the wrong code.

Clik intall and nominate.


Thanks for your time

:D Your Welcome :up:

Theater 03-19-2009 10:46 AM

1 Attachment(s)
Absolutely brilliant! Thank you for this. :)

It even works with the Addon Chat links which is awesome since I couldn't ever get it to work properly on my vBadvanced page.

Code:

  <li><span class="qmdivider qmdividery" ></span></li>
    <li><a class="qmparent" href="addonchat.php">CHAT ROOM ($addonchat[user_count])</a>

        <ul>
        <li><a href="addonchat.php" title="Enter Chat Room">Enter Chat Room</a></li>
        <li><a href="#" onClick="window.open('addonchat.php?$session[sessionurl]do=popup', 'addonchat', 'width=$addonchat[width_float],height=$addonchat[height_float],statusbar=no,scrollbars=no,toolbar=no,menubar=no,resizable=yes'); return false">Enter Chat Room (Float)</a></li>
        <li><span class="qmdivider qmdividerx" ></span></li>
        <li><a href="addonchat_who.php" title="View who is chatting right now">Who's Chatting?</a></li>
        </ul></li>


Theater 03-19-2009 02:04 PM

Hmmm, has anyone had any luck getting a quick search form to work with the menu? Then I can just clip off my Navbar buttons and be set with this baby. :)

UKBusinessLive 03-19-2009 05:32 PM

Quote:

Originally Posted by Theater (Post 1771842)
Hmmm, has anyone had any luck getting a quick search form to work with the menu? Then I can just clip off my Navbar buttons and be set with this baby. :)

Glad your happy Theater, I've not seen it working with the quick search form as yet but i guess folk are looking into it ;)


Would be a great addition if someone can get it working :up:

fukdawrld 03-28-2009 01:36 AM

I have 2 questions. First is there anyway to add images to the area that drops down? See the picture below to see where i'm speaking about.

https://vborg.vbsupport.ru/external/2009/03/3.png



Is there a way to make the menu open up when clicked on instead of when you mouse over it?

theparentpack 04-04-2009 09:47 AM

I want to get rid of the existing navbar completely, but want my other links to work such as my Unread Posts. What coding do I need to remove so it only removes the links strip in my navbar, and not affect the other links? I look forward to your answer.;)

ArnyVee 04-04-2009 06:51 PM

Added this and works great! :up:

Now, just need to work with the CSS to match my site colors. Gerry, you did it again with a great mod for our community! :D


Oh....how do we turn off our navigation bar?

Edited: Found answer here .... https://vborg.vbsupport.ru/showthread.php?t=179238&

ArnyVee 04-04-2009 11:33 PM

How do I get my vBadvanced working with the same menu? I'm sure it's easy, but just haven't found where to edit. ;)

t.uzuner 04-05-2009 08:22 PM

good job but very adulterated. i want this modification to xml

ArnyVee 04-09-2009 12:53 AM

Anyone know where to adjust the 'padding' between the links on the main menu portion? They are a little too spread out so it breaks on smaller resolutions. :(

Any ideas?

theparentpack 04-09-2009 03:08 AM

I have this installed and have removed the vB navbar completely. Now when I have any notifications other than private messages I cannot click on the Your Notifications link. Also, I cannot do a search when in the Member List. When I try to click on either one it does nothing at all. Any way to correct this issue?

ArnyVee 04-09-2009 09:32 PM

Quote:

Originally Posted by theparentpack (Post 1787060)
I have this installed and have removed the vB navbar completely. Now when I have any notifications other than private messages I cannot click on the Your Notifications link. Also, I cannot do a search when in the Member List. When I try to click on either one it does nothing at all. Any way to correct this issue?

Same issue here :(

But, if I find the answer I'll share it here. So, please let me know if you find the answer as well.

I have a feeling it has to do with something that is coded into the navigation bar that the dropdown information is listed into. I haven't had a chance to look at it, but if you find out, please share! :D

Theater 04-09-2009 10:11 PM

The navbar template contains more than just the navigational links. If you wipe it completely out you're also removing the Notice condition and more; like the Ad Location call for the ad_navbar_below template for example.

You'll need to use some basic coding search skills to see where what you want to remove begins and where it ends. For example if you just want to take off the bar below the breadcrumb navigation and login/member box, you would look at the template code and find:

Code:

<!-- nav buttons bar -->
then search down and find:

Code:

<!-- / nav buttons bar -->
..and snip out everything between.

I would recommend reverting your navbar template back to default. Copy the code to Notepad so you can have a better view of the whole template, snip out carefully what you don't want, and paste in what's left into the template in the AdminCP page and Save.

[high]* Theater takes the twitchy bunny and flees...[/high]

ArnyVee 04-10-2009 01:01 AM

Thanks Theater. We had the answer about removing the navbar (correctly) using this thread's info....

https://vborg.vbsupport.ru/showthread.php?t=179238&

....but, we are now looking to reclaim the "lost" function of the link working on the private messages within the login box. Any idea as to how we can get that back and working?

Theater 04-10-2009 02:20 AM

By chance do you have this line:

Code:

<if condition="$show['popups']">
..right before this here still?

Code:

<!-- PAGENAV POPUP -->

PM me your navbar template and I'll have a look if you want.

ArnyVee 04-10-2009 02:46 AM

Quote:

Originally Posted by Theater (Post 1787878)
By chance do you have this line:

Code:

<if condition="$show['popups']">
..right before this here still?

Code:

<!-- PAGENAV POPUP -->

PM me your navbar template and I'll have a look if you want.

Yes, those show up in the navbar template.

PM sent with template. Thanks for your help! :D

Theater 04-10-2009 03:07 AM

I narrowed it down to this code you're missing:

Code:

<if condition="$show['member'] AND    $notifications_total">
<!-- notifications menu -->
<div class="vbmenu_popup" id="notifications_menu" style="display:none">
    <table cellpadding="4" cellspacing="1" border="0">
    <tr><td class="thead" colspan="2">$vbphrase[your_notifications]</td></tr>
    $notifications_menubits
    </table>
</div>
<!-- / notifications menu -->
</if>

Entire template with it:

Code:

<br />

<!-- breadcrumb, login, pm info -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
    <td class="altbg" width="100%">
        &nbsp;
    </td>
<!--<UKBL Iframe Ticker Start>----------------------------------------------------------------------->

<td class="altbgcolor">
<div align="right">
<!--For full source code and more DHTML scripts, visit http://www.dynamicdrive.com-->
<!--This credit MUST stay intact for use-->
<iframe id="tickermain" src="http://waltdisneyboards.com/exfile.htm" width=200 height=90 marginwidth=0 marginheight=0 hspace=0 vspace=0 frameborder=0 scrolling=no></iframe>
</DIV>
</td>
<!--<UKBL Iframe Ticker End>----------------------------------------------------------------------->
<td class="altbgcolor">
<a href="http://www.waltdisneyboards.com/external.php?type=rss2"><img src="http://www.waltdisneyboards.com/images/misc/feed-icon.gif" border="0" alt="WDB News Feed" />
<if condition="$show['member']">
    <td class="altbgcolor" nowrap="nowrap">
    <div class="smallfont">
        <strong><phrase 1="$bbuserinfo[username]" 2="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[welcome_x_link_y]</phrase></strong><br />
        <phrase 1="$pmbox[lastvisitdate]" 2="$pmbox[lastvisittime]">$vbphrase[last_visited_x_at_y]</phrase>

        <if condition="$show['notifications'] AND $show['popups']">
            <div><span id="notifications"><a href="usercp.php$session[sessionurl_q]">$vbphrase[your_notifications]:</a> <strong>$notifications_total</strong></span></div>
            <script type="text/javascript"> vBmenu.register("notifications"); </script>
        <else /><if condition="$show['pmstats']">
            <div><phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl_q]">$vbphrase[private_messages_nav]</phrase></div>
        </if></if>

        <if condition="$show['pmwarning']"><div><strong><phrase 1="$vbphrase[pmpercent_nav_compiled]">$vbphrase[your_pm_box_is_x_full]</phrase></strong></div></if>
<if condition="$show['navbar_credits']">
            <div>$vbphrase[credits]</a>: <strong><span id="navbar_credits">$GLOBALS[navbar_credits]</span></strong> [<a href="credits.php?$session[sessionurl]do=banking">$vbphrase[check]</a>]<if condition="$show['credits_purchase']"> [<a href="credits.php?$session[sessionurl]do=manage#purchase">$vbphrase[purchase]</a>]</if></div>
        </if>
    </div>
    </td>
<else />
    <td class="altbgcolor" nowrap="nowrap" style="padding:0px">
        <!-- login form -->
        <form action="login.php?do=login" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, $show[nopasswordempty])">
        <script type="text/javascript" src="clientscript/vbulletin_md5.js?v=$vboptions[simpleversion]"></script>
        <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
        <tr>
            <td class="smallfont" style="white-space: nowrap;"><label for="navbar_username">$vbphrase[username]</label></td>
            <td><input type="text" class="bginput" style="font-size: 11px" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="$vbphrase[username]" onfocus="if (this.value == '$vbphrase[username]') this.value = '';" /></td>
            <td class="smallfont" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" checked="checked" />$vbphrase[remember_me]</label></td>
        </tr>
        <tr>
            <td class="smallfont"><label for="navbar_password">$vbphrase[password]</label></td>
            <td><input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" id="navbar_password" size="10" tabindex="102" /></td>
            <td><input type="submit" class="button" value="$vbphrase[log_in]" tabindex="104" title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" /></td>
        </tr>
        </table>
        <input type="hidden" name="s" value="$session[sessionhash]" />
        <input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
        <input type="hidden" name="do" value="login" />
        <input type="hidden" name="vb_login_md5password" />
        <input type="hidden" name="vb_login_md5password_utf" />
        </form>
        <!-- / login form -->
</if>
</tr>
</table>
<!-- / breadcrumb, login, pm info -->

<br />
$vbnews_ticker
<br />
<if condition="$show['notices']">
    <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
    <tr>
        <td class="thead">$vbphrase[notices]</td>
    </tr>
    <tr>
        <td class="alt1">$notices</td>
    </tr>
    </table>
    <br />
</if>

<if condition="$show['forumdesc']">
    <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
    <tr>
        <td class="alt1" width="100%"><strong>$foruminfo[title]</strong> <span class="smallfont">$foruminfo[description]</span></td>
    </tr>
    </table>
    <br />
</if>

<if condition="$show['popups']">

<!-- PAGENAV POPUP -->
    <div class="vbmenu_popup" id="pagenav_menu" style="display:none">
        <table cellpadding="4" cellspacing="1" border="0">
        <tr>
            <td class="thead" nowrap="nowrap">$vbphrase[go_to_page]</td>
        </tr>
        <tr>
            <td class="vbmenu_option" title="nohilite">
            <form action="$vboptions[forumhome].php" method="get" onsubmit="return this.gotopage()" id="pagenav_form">
                <input type="text" class="bginput" id="pagenav_itxt" style="font-size:11px" size="4" />
                <input type="button" class="button" id="pagenav_ibtn" value="$vbphrase[go]" />
            </form>
            </td>
        </tr>
        </table>
    </div>
<!-- / PAGENAV POPUP -->
</if>

<if condition="$show['member'] AND    $notifications_total">
<!-- notifications menu -->
<div class="vbmenu_popup" id="notifications_menu" style="display:none">
    <table cellpadding="4" cellspacing="1" border="0">
    <tr><td class="thead" colspan="2">$vbphrase[your_notifications]</td></tr>
    $notifications_menubits
    </table>
</div>
<!-- / notifications menu -->
</if>

$ad_location[ad_navbar_below]
$welcomeheaders

Try that out on your board. :)

ArnyVee 04-10-2009 03:11 AM

Thanks Theater! Worked perfectly! :up:

Well, I still am having issues with the vBAdvanced though. Gotta get some help there because the header or the navbar don't seem to be working like they are on all other pages. :confused:

ArnyVee 04-10-2009 10:59 AM

1 Attachment(s)
I just noticed that the "Who's Online" shows folks at an "unknown location" and showing as the link to the center_tile_blue.gif image for this mod.

Anyone noticed that as well? How do we fix that so that it shows correctly on the Who's Online page?

Habtopia 04-13-2009 06:37 PM

I dont know if you like to see how your work is used but ill supply a link anyway

http://www.habtopia.co.uk/forum/

Thats how i used the menu you provided the only issue i have is the 1px margin on the left i dont know whats causing this at all :(

Many thanks


Also i put it in the header template so it shows on all pages

dekaybrown 04-15-2009 02:08 PM

I just got done editing and installed this!

Way Fab mate!! BRILL!!!!

Works like a champ, Love it.

KUDOS & Cheers.

dealcafe 04-16-2009 01:01 AM

I love love this. It was exactly what I was looking for. I really would like it to be where the nav bar is though and I have tried removing the existing <!-- nav buttons bar --> code etc and putting the code in there, which shows up but then the javascript is disabled it shows # instead. Is there a idiots version for how to do that?:erm:

dekaybrown 04-16-2009 04:18 AM

I have a slight problem, the background does not show up, tried it on multiple URL, nothing.

Went to a CSS instructional site, followed all directions, nada.

theparentpack 04-16-2009 08:26 AM

Looks like I removed too much. That fixed it, thanks so much!

Quote:

Originally Posted by Theater (Post 1787751)
The navbar template contains more than just the navigational links. If you wipe it completely out you're also removing the Notice condition and more; like the Ad Location call for the ad_navbar_below template for example.

You'll need to use some basic coding search skills to see where what you want to remove begins and where it ends. For example if you just want to take off the bar below the breadcrumb navigation and login/member box, you would look at the template code and find:

Code:

<!-- nav buttons bar -->
then search down and find:

Code:

<!-- / nav buttons bar -->
..and snip out everything between.

I would recommend reverting your navbar template back to default. Copy the code to Notepad so you can have a better view of the whole template, snip out carefully what you don't want, and paste in what's left into the template in the AdminCP page and Save.

[high]* Theater takes the twitchy bunny and flees...[/high]


dekaybrown 04-16-2009 02:43 PM

OK so just exactly how do I get to the navbar to edit it???

Would love to tinker with the navbar, but cannot seem to access it???

TheLastSuperman 04-16-2009 03:17 PM

Quote:

Originally Posted by dekaybrown (Post 1792552)
OK so just exactly how do I get to the navbar to edit it???

Would love to tinker with the navbar, but cannot seem to access it???

AdminCP --> Styles & Templates --> (Choose the Style) --> Navigation & Breadcrumb Templates --> Navbar

NOW, copy the original & paste into notepad++ before you start, if any problems paste over your modified template for the fix.

IF you have vboptimise installed and the option to flush cache beofre changes show up then flush the cache to show the changes, then refresh your other page w/ your forum on it to see any changes.

S-MAN

dekaybrown 04-18-2009 02:38 AM

Still confused?

https://vborg.vbsupport.ru/


All times are GMT. The time now is 04:06 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01762 seconds
  • Memory Usage 1,937KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (23)bbcode_code_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete