Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 01-10-2011, 11:11 AM
conspirator conspirator is offline
 
Join Date: Nov 2009
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Forum Navigation Link Not showing properly

The Forum Navigation link under the navbar in my forum is not showing properly. e.g The links that show Forum>Sub-Category when you are in a subcategory.

It shows something like this-


Notice how the "Entertainment to a new level" is on the left and "***** - Taking" is on the right. How can I make it show properly.

I am using the CA Evo 3.8.3 style

The Forum homepage name is broken like this in all the pages.

Thanks in advance.
Reply With Quote
  #2  
Old 01-10-2011, 02:55 PM
metalguy639 metalguy639 is offline
 
Join Date: Dec 2008
Posts: 501
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You would have to edit the navbar template of the template that holds your breadcrumbs code. If you post your navbar template code I can take a look at it. Or you can copy the contents from the template & save them to a text file and then revert the navbar template. If this is a free or paid for skin you could request help from the developer in the thread you found it in too.
Reply With Quote
  #3  
Old 01-10-2011, 04:59 PM
conspirator conspirator is offline
 
Join Date: Nov 2009
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here is the navbar template code. Thanks for your help metalguy639.

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>

$ad_location[ad_navbar_below]

<!-- breadcrumb -->
<div id="navbar-row">
<if condition="is_array($navbits)">
	<div class="navbar navbar-top"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a> $navbits[breadcrumb]
	 &raquo; <strong>$navbits[lastelement]</strong></div>
<else />
	<div class="navbar navbar-top"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a></div>
</if>
</div>
<br class="spacer8" />
<!-- / breadcrumb -->
Reply With Quote
  #4  
Old 01-10-2011, 05:58 PM
metalguy639 metalguy639 is offline
 
Join Date: Dec 2008
Posts: 501
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Be sure to save that template code to a text file and try this:

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>

$ad_location[ad_navbar_below]

<!-- breadcrumb -->
<div id="navbar-row">
<if condition="is_array($navbits)">
	<div class="navbar navbar-top"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a> $navbits[breadcrumb]
	 &raquo; <strong>$navbits[lastelement]</strong></div>
<else />
	<div class="navbar navbar-top"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a></div>
</if>
</div>
<!-- / breadcrumb -->
See if that works. The problem is the skin has been modified to be in all div tags. Usually for anything under vb4 the skin is laid out in a table format. So there maybe a conflict somewhere within the css if the code I gave you does not work. you would need to look at your css and make changes to the navbar-row, or navbar navbar-top portion of the css code. You can find this code by opening your style in the admincp and clicking on the "go" button beside the style name. Scroll to the bottom and there is a box at the very bottom that will probably hold your custom css code.
Reply With Quote
  #5  
Old 01-14-2011, 12:28 PM
conspirator conspirator is offline
 
Join Date: Nov 2009
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That code unfortunately didnt work. Can you please have a look at my CSS?
Reply With Quote
  #6  
Old 01-14-2011, 05:55 PM
metalguy639 metalguy639 is offline
 
Join Date: Dec 2008
Posts: 501
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can you give me a link to your site? I can look and see if I can find what part is out of whack.
Reply With Quote
  #7  
Old 01-14-2011, 07:56 PM
conspirator conspirator is offline
 
Join Date: Nov 2009
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code:
www.********.com
Reply With Quote
  #8  
Old 01-15-2011, 12:30 AM
metalguy639 metalguy639 is offline
 
Join Date: Dec 2008
Posts: 501
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Did you put this in your $ad_location[ad_navbar_below] ad area?

Code:
Vote for the hottest entries : Hottest Celeb in Santa/Winter clothing | Sexiest Babe in the Snow/Outdoors
If so that maybe your problem, remove it and see if that fixes it. Look for the template called "ad_navbar_below", take the additional links code out and it may fix this issue. If that does fix the issue then you may need to fix the code in that template so that it does not cover up the breadcrumbs.
Reply With Quote
  #9  
Old 01-15-2011, 08:34 AM
conspirator conspirator is offline
 
Join Date: Nov 2009
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks alot metalguy639. I checked the template and turns out an alignment code was creating the conflict. Now its all fixed.
Reply With Quote
  #10  
Old 01-15-2011, 01:27 PM
metalguy639 metalguy639 is offline
 
Join Date: Dec 2008
Posts: 501
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Awesome, glad you were able to find the issue.
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 11:07 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.07571 seconds
  • Memory Usage 2,248KB
  • Queries Executed 11 (?)
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
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (4)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete