sasvirtual Posted February 5, 2012 Report Share Posted February 5, 2012 Hey guys! Here is my issue... <html> <head> <title><?php echo $page_title ?></title> <?php echo $page_htmlhead; ?> </head> <body style="font-family: candara"> <?php $page_htmlreq; ?> <div id="container"> <div id="content"> <?php Template::Show('news_newsitem.tpl'); ?> <?php Template::Show('core_navigation.tpl'); ?> </div> </div> </body> </html> This works on the home page but when I click on "Pilot Center" I get the same thing and the only difference is the link shows for index.php/profile <html> <head> <title><?php echo $page_title ?></title> <?php echo $page_htmlhead; ?> </head> <body style="font-family: candara"> <?php $page_htmlreq; ?> <div id="container"> <div id="content"> <?php echo $page_content ?> <?php Template::Show('core_navigation.tpl'); ?> </div> </div> </body> </html> This works like phpVMS but I need a way to put the "Recent Reports" etc on a side bar, not directly under the news! Any help would be great! Quote Link to comment Share on other sites More sharing options...
Dyl963 Posted February 5, 2012 Report Share Posted February 5, 2012 Try adding what you want in a sidebar such as using this Code: <div id="left"> <div id="box"> <h3>Name of the Title</h3> <?php thing_you_want_here; ?> </div> Hope this helped 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.