The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
UKBL ~ Quality Drop Down Menu System Details »» | |||||||||||||||||||||||||||||||||||||||||
UKBL ~ Quality Drop Down Menu System
Developer Last Online: Feb 2012
UKBL ~ Quality Drop Down Menu System You wanted Drop down Menu's that were easy to install and edit, Well now you've got it Live Demo http://www.aboxcafe.com/index.php http://www.wheelsbd.com/ Compatible with almost ALL Browsers. Hi Guys, i've had so many messages about My "Easy Menu Tabs" and when was i going to do Dropdown Tabs, Well i've listened and now i can happily add UKBL ~ Quality Drop Down menu's to our list of modifications. This is just so easy to edit and install, as long as you feel confident with a few simple edits and uploading a graphics file to your images directory or even your photobucket account, if you don't want to mess about uploading to your server. UKBL ~ Quality Drop Downs sit quite happily on top of your forums accessable from all pages of the forum They look like any bog standard Menu Nav bar but when you hover the mouse over it you'll see the dropdowns, I've uploaded a test version to my forum, Take a look for yourselves http://www.ukbusinesslive.co.uk/forum I've left the Top White Easy Men Bar in place also so you can compare both of them. When you go over the menu bar the dropdowns should appear like in the picture below See how the chosen links are highlighted So now we come to the installation stage. Download the dropdown.zip file below and open the VBOrg_Menu.txt file in notepad or any other text editor, as we need to edit a few files. The first one we need to edit is the url of our Graphic File, So to cut a long story short we'll upload our graphic file to our Photobucket account, or any other account or image directory on your server, So firstly find Code:
/*"""""""" (MAIN) Container Edit Picture URL Here :-) """"""""*/ #qm0 { padding:5px; background-image:url(http://i475.photobucket.com/albums/rr114/ukbusinesslive/center_tile_blue.gif); border-width:1px; border-style:solid; border-color:#eeeeee; } Code:
background-image:url(http://i475.photobucket.com/albums/rr114/ukbusinesslive/center_tile_blue.gif); Then we go and do the menu edits, You don't want your members click on your forum menu and ending up on my site :erm: So what we need to do now is change the menu links for yours, It take about 15 min's but its not hard to do, so lets do it..... First find where our menu starts, This will be right at the bottom of the code, The HTML part of this and the first bit we need to change starts from here... Code:
<li><a class="qmparent" href="javascript:void(0)">MY CONTROL PANEL</a> <ul> <li><a href="http://www.ukbusinesslive.co.uk/forum/profile.php?do=editavatar" title="Edit Avatar">Edit Avatar</a></li> <li><a href="http://www.ukbusinesslive.co.uk/forum/profile.php?do=editsignature" title="Edit Signature">Edit Signature</a></li> <li><a href="http://www.ukbusinesslive.co.uk/forum/profile.php?do=editoptions" title="Edit Options">Edit Options</a></li> <li><span class="qmdivider qmdividerx" ></span></li> <li><a href="http://www.ukbusinesslive.co.uk/forum/subscription.php?do=viewsubscription" title="List Subscriptions">List Subscriptions</a></li> </ul></li> Code:
<li><a class="qmparent" href="javascript:void(0)">MY CONTROL PANEL</a> Code:
<li><a href="http://www.ukbusinesslive.co.uk/forum/profile.php?do=editavatar" title="Edit Avatar">Edit Avatar</a></li> If you want to change the link altogether and put your own, then replace the full URL with one that you want and don't forget to edit the end part "Edit Avatar" as that is the title thats shown on the dropdown. When you've finished all your editing, we need to upload this whole code to your Header Template of the Style that your Currantly using on your forum, So once you've saved your edited code, Just copy and paste directly to your Header, Go right to the end and click paste, save the template and thats it, The Graphic File which you need to upload to your server or image host is also in the zip file. So easy and a great improvement to any VBulletin Forum This is a Freebie for all you members on VB.org with my compliments If anyone wants any custom menus made, Just PM me I'll help where i can, Just bear in mind a menu like this takes a good couple of hours or so, so a donation is more than welcomed Oh almost Forgot guys, If you like it, Please Click on Installed, as this really does motivate me to improving these hacks UPDATE 09.02.09 Uploaded a New Zip File, Black Menu.Zip This is the same as this original except that its black for darker Websites and Forums, Instructions are the same as above, and comes complete with customised Graphics which will need to be uploaded to your /images/ directory. UPDATE 23.02.09 For some of you Admins who prefer menu Buttons as opposed to a menu bar, i've made some buttons based on the above menu formate, You can install it by following the same instructions as the main install, Just upload the graphics and edit your menu links and thats it. Experiment with the css to change colors width of boxes etc, Add more or as little as you want, the important thing is to have fun learning. UPDATE: 26th April 2009 Centering the Menu so that it appears central There has been much debate about trying to centralise the menu tabs, I didn't want to edit the code too much as this would make a mess of it in different browsers, However i've found that there is a way The easiest way to center menu content is to place it inside of a center aligned table, as shown below: Code:
<table cellpadding=0 cellspacing=0 align="center"><tr><td> ----[ your menu structure]---- </td></tr></table> Hope this helps :up: Enjoy Download Now
Screenshots
Show Your Support
|
Comments |
#322
|
||||
|
||||
Quote:
What resulted in my implementation was 2 css files and 5 .js files, each containing a section of the surrounding code. I had to load the external .js files in the same order as they were in the menu block given to us originally. I then called them in the headinclude template in the order I needed them: Code:
<!-- Navbar Repplacement Files --> <link rel="stylesheet" type="text/css" href="assets/css/cqm-menu.css" /> <link rel="stylesheet" type="text/css" href="assets/css/cqm-menuitems.css" /> <!-- Small section initialising the qmad object --> <script type="text/javascript" src="assets/js/cqm-qmad.js"</script> <!-- Menu 0 Add-On Settings --> <script type="text/javascript" src="assets/js/cqm-aosetting.js"</script> <!-- UKBL ~ Core Quality Menu Code --> <script type="text/javascript" src="assets/js/cqm-menucode.js"</script> <!-- Add-On Code: Rounded Sub Corners --> <script type="text/javascript" src="assets/js/cqm-aorsubcnr.js"</script> <!-- Add-On Code: Rounded Items --> <script type="text/javascript" src="assets/js/cqm-aoritem.js"</script> I left the very last piece of .js code in the header template, haven't got as far as to try that in an external just yet. I tested this with 3 browsers - Firefox 3.6.3, Safari 4.5 and Opera 10.10 on OSX Snow Leopard 10.6.3 and all browsers loaded fine and displayed the menu as "normal". I would attach the files here if the author is OK with that otherwise just sort of follow what I did and you should be good to go..... I did all this to see if I can replace the navbar sub-menu items in VB4 with this code so I can mimic my VB3 style in VB4 Cheers Bruce |
#323
|
||||
|
||||
The author has not been online much lately, but I'm sure he wouldn't mind
Can you please attach the files :up: |
#324
|
||||
|
||||
I may do soon... as soon as I work out an issue. It seems I touted Opera too soon.....
In Opera 10.x (OSX and Vista so far) the entire site header, including the navbar replacement menu, disappears. Zip, nada, nothing. Still trying to figure that one out. If I do, I will post what I can here for others,..... |
#325
|
||||
|
||||
Quote:
|
#326
|
|||
|
|||
What do I need to remove from the code to get rid of the arrows?
|
#327
|
||||
|
||||
Nice mod
|
#328
|
|||
|
|||
http://www.gimp.org it is a free program. Just download. Then open program. Once program is open click File. In the drop down menu click Open. Find image you want to change. Open it. Now click on Color tab/link. Click on Colorize in drop down menu. Adjust the three settings until you get the color you want. Save, and upload.
If you are trying to match a color on your site it might help to have a screenshot opened as a layer to compare your color change to. Just go to the page with the color you want to copy and click the Prt Scr button. Then go back to GIMP and click Edit, Paste As, New Layer. Now you have a side by side comparison for color matching. |
#329
|
|||
|
|||
Just a note - this isn't working in IE8 or earlier.
|
#330
|
||||
|
||||
Can someone help me with that code I need to replace from my navbar template to remove the vb default menu so that I can use this one instead?
|
#331
|
||||
|
||||
Quote:
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|