TwistedDark 3.8.3 nava bar

slydog

New Member
ok I want to add a link in the navabar, say like classifieds which it does in the options in admin/classifieds, But the nava bar seems to be not the right look. it is a glass like look for the links in the nav bar the the like for the classifieds is a straight black background..how do i fix this in the nvabar...
 
As you probably already know, the navbar in Twisted Dark is in the header template. Assuming you put the code in the navbar that the classified mod told you to put in, try changing the class to 'class=navitem'. That might fix it. I'm looking at the template from a 3.7.4 version so I assume the code hasn't changed that much.
 
Grinderhand said:
As you probably already know, the navbar in Twisted Dark is in the header template. Assuming you put the code in the navbar that the classified mod told you to put in, try changing the class to 'class=navitem'. That might fix it. I'm looking at the template from a 3.7.4 version so I assume the code hasn't changed that much.

no after looking at it I think now it is in the header, not 100%, but the faq and calender is there
 
Need some more furniture and drapes in this thread. There seems to be a slight echo in here ;)

Did you try changing the class to navitem?
 
Grinderhand said:
Need some more furniture and drapes in this thread. There seems to be a slight echo in here ;)

Did you try changing the class to navitem?

I tooke calender, which has " class to navitem " and tried to put in classifed in that..but now it just dissapperied,

PHP:
<td class="navitem"><a href="classifelds.php$session[sessionurl_q]">$vbphrase[classifelds]</a></td>
 
Unless the mod inserted a phrase into vB, there is no vbphrase called classified. Make your link look like this:

Code:
<td class="navitem"><a href="classifelds.php$session[sessionurl_q]">Classified</a></td>

That should do it.
 
Grinderhand said:
Unless the mod inserted a phrase into vB, there is no vbphrase called classified. Make your link look like this:

Code:
<td class="navitem"><a href="classifelds.php$session[sessionurl_q]">Classified</a></td>

That should do it.

ok that worked..thanks, but when I tried to do anthor link, used the same code, just changed the classifeld to vbay, anther program, it did not work..himmm guess I do not have it down yet...
 
You would also have to change the href part to point to your script. Changing the link name does nothing.

You're welcome.
 
Grinderhand said:
You would also have to change the href part to point to your script. Changing the link name does nothing.

You're welcome.

Like this it still does not show up on the nav bar...

PHP:
<td class="navitem"><a href="Horoscopes.php$session[sessionurl_q]">Horoscopes 
</a></td>
 
Back
Top