EricThePanic Posted August 27, 2012 Report Posted August 27, 2012 Hello everyone, Is there a way to use the default skin for most of the pages, and use another skin for some specific pages? Let's say I want to make a kind of "Printed" look of my flight briefings, no header, no nav bar, no colors, juste black on white... how can I proceed to do that on only a few pages without changing the look of my entire site? Thanks! Quote
freshJet Posted August 27, 2012 Report Posted August 27, 2012 /action.php/schedules/brief/1 Change the 1 accordingly. -------------- Alternatively you can create a file in your main directory like briefings.php and create your own. Just remember to add: <?php include_once(/core/codon.config.php);?> Then you need to add: $schedule = SchedulesData::getScheduleDetailed($_GET['flight']); So now you can get flight details like: $schedule->flightnum and $schedule->depicao To get the details. So in your address bar you'd put: http://yoursite.com/briefings.php?flight=1 And again change the one to the corresponding schedule ID Quote
EricThePanic Posted August 27, 2012 Author Report Posted August 27, 2012 All right! Easy Thank you so much! Quote
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.