Guest Posted December 21, 2009 Report Share Posted December 21, 2009 Hi all, I want to add a new page to the top (navigation bar) of the following site: http://flymaldives.exofire.net/ It is currently under 'destinations served', but it doesn't adapt to login/out (i.e- it always shows the login/register buttons even when I am logged in). How can I get the destinations served to adapt to the login/logout situation? Does it have to go through the index.php/routes.htm rather than just /routes.htm? How do I do this? Thanks. Quote Link to comment Share on other sites More sharing options...
Guest Posted December 21, 2009 Report Share Posted December 21, 2009 Never mind, I just created a simple backlink instead. Another question - is it possible to make the links in the navigation bar start with capital letters? I have noticed that they have capial letters in the core_navigation.tpl, but not on the site. Thanks. Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted December 21, 2009 Administrators Report Share Posted December 21, 2009 Never mind, I just created a simple backlink instead. Another question - is it possible to make the links in the navigation bar start with capital letters? I have noticed that they have capial letters in the core_navigation.tpl, but not on the site. Thanks. The menu items on the release skin css are set to lowercase. You can take that line out of your css file and then they will be like you have them in the core_nav file. Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted December 21, 2009 Administrators Report Share Posted December 21, 2009 Never mind, I just created a simple backlink instead. Another question - is it possible to make the links in the navigation bar start with capital letters? I have noticed that they have capial letters in the core_navigation.tpl, but not on the site. Thanks. You can do: <?php if(Auth::LoggedIn()) { echo '<a href="/routes.html">Routes</a>'; } ?> And that will only show if logged in Quote Link to comment Share on other sites More sharing options...
Guest Posted December 22, 2009 Report Share Posted December 22, 2009 Thanks Simpilot and Nabeel. The navigation bar is sorted. I think I'll stick with the backlink for now - I want the page to be available whe logged on and off. Thanks. 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.