Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Vertical site navigation Details »»
Vertical site navigation
Version: 1.00, by peterska2 peterska2 is offline
Developer Last Online: Nov 2013 Show Printable Version Email this Page

Version: 3.5.0 Rating:
Released: 10-25-2005 Last Update: 04-13-2006 Installs: 77
Template Edits
 
No support by the author.

This hack requires one of the following to be installed:

AmyKhar's Right Column On Every Page
AmyKhar's Left Column On Every Page


Without sounding obvious, what this does is creates a vertical navigation system on your site. It can be used on either the left or right side depending on which of the above hacks are installed.

To install, download the text file and follow the instructions.

Template edits - 2
Phrase edits - 1

Screenshots of logged in and logged out are attached.

Don't forget that install button if you use this!



Just realised, I took the screenshots before changing the bar header. It now has the name of your site there - not block name!

[high]Updated 14 April 2006: Fixed gap after Todays Posts[/high]

To upgrade Find
Code:
<tr><td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td><tr>
Replace with
Code:

<tr><td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td></tr>
Important information regarding support - 20/04/06
Due to time constraints and the amount of things that are being planned for future modifications, priority support will now be provided here. Support provided in this thread will be on an as and when basis.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #72  
Old 05-05-2006, 08:32 AM
efil's Avatar
efil efil is offline
 
Join Date: Nov 2004
Posts: 134
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,
how I can make a coulmn with the last ten posts from the forum?

Thank you,
Efil.
Reply With Quote
  #73  
Old 06-10-2006, 03:16 PM
OKIHost OKIHost is offline
 
Join Date: Sep 2005
Location: Bawstin
Posts: 46
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

For some reason when not logged in the main login box table appears wider than it is when you are when logged in so it makes everything look off unless logged in.

Here is a picture when logged in looking as it should:
http://www.ImageTrunk.com/uploads/fdb10d3018.png

but if you don't login or just visit the forums you get this
http://www.ImageTrunk.com/uploads/ba381c295c.png

I have tried uninstalling and reinstalling both the left sidebar and sidebar navigation mods but still get the same result.
Reply With Quote
  #74  
Old 06-10-2006, 03:28 PM
peterska2 peterska2 is offline
 
Join Date: Oct 2003
Location: Manchester, UK
Posts: 6,504
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by OKIHost
For some reason when not logged in the main login box table appears wider than it is when you are when logged in so it makes everything look off unless logged in.

Here is a picture when logged in looking as it should:
http://www.ImageTrunk.com/uploads/fdb10d3018.png

but if you don't login or just visit the forums you get this
http://www.ImageTrunk.com/uploads/ba381c295c.png

I have tried uninstalling and reinstalling both the left sidebar and sidebar navigation mods but still get the same result.
that is because of the width of the user name text plus text box.

I'll have another look at it over the next few days as I have some improvement ideas also.
Reply With Quote
  #75  
Old 06-10-2006, 03:37 PM
OKIHost OKIHost is offline
 
Join Date: Sep 2005
Location: Bawstin
Posts: 46
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks! Do you think removing the left bar navigation fix the issue for now?
Reply With Quote
  #76  
Old 06-10-2006, 03:47 PM
peterska2 peterska2 is offline
 
Join Date: Oct 2003
Location: Manchester, UK
Posts: 6,504
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

heres a fix for your problem. I'll include it properly in the next update.

FIND

Code:
<tr>
			<td class="smallfont">$vbphrase[username]</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>
			
		</tr>
		<tr>
			<td class="smallfont">$vbphrase[password]</td>
			<td><input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" size="10" accesskey="p" tabindex="102" /></td>
		</tr>
Replace with

Code:
<tr>
			<td class="smallfont">$vbphrase[username]</td>
</tr>
<tr>
			<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>
			
		</tr>
		<tr>
			<td class="smallfont">$vbphrase[password]</td>
</tr>
<tr>
			<td><input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" size="10" accesskey="p" tabindex="102" /></td>
		</tr>
That will force the input boxes onto new rows.
Reply With Quote
  #77  
Old 06-10-2006, 03:58 PM
OKIHost OKIHost is offline
 
Join Date: Sep 2005
Location: Bawstin
Posts: 46
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That worked great! Thanks a ton much appreciated!
Reply With Quote
  #78  
Old 07-06-2006, 11:36 AM
squall leonhart squall leonhart is offline
 
Join Date: Jun 2006
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Cool! I absolutely install this mod. I was looking for it for a long time ^^
Reply With Quote
  #79  
Old 12-09-2006, 10:16 AM
Bass Nutz's Avatar
Bass Nutz Bass Nutz is offline
 
Join Date: Jul 2004
Location: New England
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How in the hell do I fix this?

http://www.bassnutz.com/index.php?

I'm trying to get that smooth look on the side navigation bar, but I get this.....


(Scroll to the bottom, and I loose my navigation bar as well.. :surprised:
Reply With Quote
  #80  
Old 12-09-2006, 05:16 PM
Bass Nutz's Avatar
Bass Nutz Bass Nutz is offline
 
Join Date: Jul 2004
Location: New England
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Somebody Please HELP ME!!!!! My Sponsors are going crazy looking for their banners........


One last plead....



HELP ME!!!!!!




Thanks you! :classic:
Reply With Quote
  #81  
Old 06-14-2007, 10:46 PM
blindman4556 blindman4556 is offline
 
Join Date: Feb 2007
Location: your basement
Posts: 104
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

is there a way to make it say Welcome, blindman4556. You have 0 unread messages; Total 0.
You last visited: Today at 14:03. instead of just Welcome, blindman4556.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:10 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04939 seconds
  • Memory Usage 2,307KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete