JohnMck93 Posted January 14, 2010 Report Share Posted January 14, 2010 Well I dont seem to understand how to use custom CSS for a custom nav bar, where do i put this? <ul id="nav"> <?php Template::Show('core_navigation.tpl'); ?> </ul> and from there where should i put my Drop down nav? Thanks everyone! Quote Link to comment Share on other sites More sharing options...
Kritikdevelopment Posted January 14, 2010 Report Share Posted January 14, 2010 Like I usually tell everyone... There are two paths one can take when it comes to your sites navigation. 1) Use the built in one from Nabeel 2) Throw a custom one in Since you want a dropdown a recommend using method 2 and hardlinking each link into the <li>s. Open your skins header.tpl and create a div in the appropriate location called something that deals with navigation <div id="Nav"> </div> After doing so wrap your <ul> within it and add the <li> items within that <div id="Nav"> <ul class="someclass"> <li>Home</li> <li>About</li> </ul> </div> Then style the class in your .css file and bam! YOU HAVE A NAV! Note: If you are using a free code for a dropdown follow their readme or instruction and apply the code in a similar manner but remember to follow their instructions as well to insure proper function. Quote Link to comment Share on other sites More sharing options...
JohnMck93 Posted January 14, 2010 Author Report Share Posted January 14, 2010 thank you, going to work on it now! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.