PDA

View Full Version : Making horizontal navigational menus


murekhalir
01-23-2009, 12:06 AM
I want to insert IMG buttons with links to serve a navigational horizontal menu in between this area, however I go the images for the buttons, I just dont know how to code it or where to modify it on my code area.

https://vborg.vbsupport.ru/external/2009/01/39.jpg

was wondering if anyone can throw me some pointers.

--------------- Added 1232677176 at 1232677176 ---------------

apologies updated post with right image.

srkrocks
01-23-2009, 03:06 AM
I think there is a hack for that try using search!

regards

SEOvB
01-23-2009, 04:24 AM
Open the navbar template and at the very top try


<a href="http://link1.com" rel="nofollow"><img src="http://site.com/image.jpg" border="0" /></a>
<a href="http://link2.com" rel="nofollow"><img src="http://site.com/image.jpg" border="0" /></a>
<a href="http://link3.com" rel="nofollow"><img src="http://site.com/image.jpg" border="0" /></a>

murekhalir
01-23-2009, 04:32 AM
Oh, I mean,

I'm going to make custom GIF buttons, to put in.

THANKS FRDS.

murekhalir
01-27-2009, 04:16 AM
I just had one question for people, if I were to make a button that says 'REGISTER'

http://rogue-market.com/images/navigation/registerButton.gif

Such as that, how can I make the link only display to people not logged on / guests?

Thanks.

SEOvB
01-27-2009, 05:42 AM
<if condition="$show[guest]">
<a href="register.php"><img src="register.gif"></a>
</if>