vBulletin Blog Navbar Issue

cereal_killer

New Member
Having a slight issue on my navbar after installed vBulletin blog 2.0.1 nulled.

All the buttons/links blend in but the blog one

My "blug_navbar_link" looks like this and I'm on ambient lighting 3.8.1 by TheProphet

(blog_navbar_link)
Code:
<td class="vbmenu_control"><a id="vbbloglinks" href="blog.php$session[sessionurl_q]">$vbphrase[blogs]</a><script type="text/javascript">vbmenu_register("vbbloglinks");</script></td>

Heres a screenshot of whats wrong

d8afe263e1744da22f472d03fbcf73496g.jpg


Mainly the blog links but it'd be great if someone could tell me what is wrong with the proxy button...I believe the proxy button may need an image or some css work in the style.

Would really appreciate some help here!
 
Bumpin this :S I've been trying to fix this for a while now. I'm sure it's nothing huge but I'm having a really tough time so again...lookin for some help here
 
cereal_killer said:
Having a slight issue on my navbar after installed vBulletin blog 2.0.1 nulled.

All the buttons/links blend in but the blog one

My "blug_navbar_link" looks like this and I'm on ambient lighting 3.8.1 by TheProphet

(blog_navbar_link)
Code:
<td class="vbmenu_control"><a id="vbbloglinks" href="blog.php$session[sessionurl_q]">$vbphrase[blogs]</a><script type="text/javascript">vbmenu_register("vbbloglinks");</script></td>

Heres a screenshot of whats wrong

d8afe263e1744da22f472d03fbcf73496g.jpg


Mainly the blog links but it'd be great if someone could tell me what is wrong with the proxy button...I believe the proxy button may need an image or some css work in the style.

Would really appreciate some help here!

Edit like this...

PHP:
<td class="tcatfont"><a id="vbbloglinks" href="blog.php$session[sessionurl_q]">$vbphrase[blogs]</a><script type="text/javascript">vbmenu_register("vbbloglinks");</script></td>

The "Proxy" button is default Forum.. did you edit this yourself?
When clicked on, it bolds up to active... this should also happening on the other buttons.
 
Yup, the proxy button is edited manually. I wasn't sure how to make a new button so I just modded the existing one. Perhaps you could guide me to making a new button and I'll revert the header template.

EDIT - Blog portion is all fixed up now, thanked :D
 
Edit your header template and modify it by makeing a new section...

Like this...
PHP:
						<!-- /Links -->                                               
						<!-- Calendar -->
						<if condition="THIS_SCRIPT=='calendar'">
						<td class="homevisited" width="70"><a href="calendar.php$session[sessionurl_q]"><span style="color: yellow;">$vbphrase[calendar]</span></a></td>
						<else />
						<td class="homelink" style="width:70px; cursor:hand;" onmouseover="this.className='homehover';" onmouseout="this.className='homelink';" onclick="window.location.href='calendar.php$session[sessionurl_q]';"><a href="calendar.php$session[sessionurl_q]"><span style="color: yellow;">$vbphrase[calendar]</span></a></td>
						</if>
						<!-- /Calendar -->
						<!-- Contact Us -->
						<if condition="THIS_SCRIPT=='sendmessage'">
						<td class="homevisited" width="80"><a href="$vboptions[contactuslink]" rel="nofollow" accesskey="9"><span style="color: orange;">$vbphrase[contact_us]</span></a></td>
						<else />
						<td class="homelink" style="width:80px; cursor:hand;" onmouseover="this.className='homehover';" onmouseout="this.className='homelink';" onclick="window.location.href='$vboptions[contactuslink]';"><a href="$vboptions[contactuslink]" rel="nofollow" accesskey="9"><span style="color: orange;">$vbphrase[contact_us]</span></a></td>
						</if>
						<!-- /Contact Us -->
 
Back
Top