Jump to content

flyalaska

Members
  • Posts

    1941
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by flyalaska

  1. can you log into your site?
  2. flyalaska

    OceanBlue

    Install Touchdown stats by Simpilot - https://github.com/DavidJClark/phpVMS-TouchdownStats Than add the code below where you want it to display. <?php $lstats = TouchdownStatsData::get_landingstats_currentmonth(10); if(!$lstats) { echo 'No Greased Landings Recorded '; echo 'For '.date('F Y'); } else { echo '<center>'; echo '<table width="750px" border="0" cellspacing="0" cellpadding="0" class="aka_table">'; echo '<thead><tr><th>Callsign</th><th>Pilot</th><th>Aircraft</th><th>Departure</th><th>Arrival</th><th>Landing</th></tr></thead>'; foreach ($lstats as $row) { $pilot2 = PilotData::GetPilotData($row->pilotid); echo '<tr><td>'; echo PilotData::GetPilotCode($row->code, $row->pilotid).'</td><td>'.$pilot2->firstname.' '.$pilot2->lastname.'</td><td>'; $aircraft = OperationsData::getAircraftInfo($row->aircraft); echo $aircraft->icao.'</td><td>'; echo $row->depicao.'</td><td>'; echo $row->arricao.'</td><td>'; echo $row->landingrate; echo ' ft/min'; echo '</td></tr>'; } echo '</table>'; echo '</center>'; } ?>
  3. flyalaska

    OceanBlue

    I had some issues with that version. Haven't had the time to work them out. That is why the download is tpl files only/ You are getting the error probably because you are using tpl files when they need to be php files.
  4. flyalaska

    OceanBlue

    php or tpl version
  5. Open a ticket on his site. I have bought several mods and he always has great support.
  6. flyalaska

    OceanBlue

    That code wasn't added by me. I don't have that on the skin. You are probably missing a opening or closing bracket.
  7. flyalaska

    OceanBlue

    I see this above the header image [if lte IE 7]>var baseurl = "http://www.daanair.nl"; var geourl = "http://ws.geonames.org"; Your site is messed up on all browsers.
  8. Have you set your exspences to high?
  9. flyalaska

    OceanBlue

    Can you show me a screenshot of what you see in IE? Also can I have your link?
  10. flyalaska

    OceanBlue

    It works perfect for me on on IE11?What do you see when you go to it? Did you happen to remove this lin in the layout.tpl? <!--[if lte IE 7]><link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/ocean_blue/styles/style.ie7.css" media="screen" /><![endif]-->
  11. flyalaska

    OceanBlue

    revert it back.
  12. flyalaska

    OceanBlue

    Locate the art.footer in styles/ocean.css. Around line 2386 .art-footer { background: #0075DB; background: linear-gradient(top, #0080F0 0, #0070D1 40%, #0070D1 50%, #0070D1 60%, #0080F0 100%) no-repeat; background: -webkit-linear-gradient(top, #0080F0 0, #0070D1 40%, #0070D1 50%, #0070D1 60%, #0080F0 100%) no-repeat; background: -moz-linear-gradient(top, #0080F0 0, #0070D1 40%, #0070D1 50%, #0070D1 60%, #0080F0 100%) no-repeat; background: -o-linear-gradient(top, #0080F0 0, #0070D1 40%, #0070D1 50%, #0070D1 60%, #0080F0 100%) no-repeat; background: -ms-linear-gradient(top, #0080F0 0, #0070D1 40%, #0070D1 50%, #0070D1 60%, #0080F0 100%) no-repeat; background: linear-gradient(top, #0080F0 0, #0070D1 40%, #0070D1 50%, #0070D1 60%, #0080F0 100%) no-repeat; -svg-background: linear-gradient(top, #0080F0 0, #0070D1 40%, #0070D1 50%, #0070D1 60%, #0080F0 100%) no-repeat; border-top:1px solid #C1CFD1; padding:15px; margin:0 auto; position: relative; color: #BDE0FF; font-size: 11px; font-family: 'Droid Sans', Arial, 'Arial Unicode MS', Helvetica, Sans-Serif; text-align: center; } Replace it with . art-footer { background: #0075DB; border-top:1px solid #C1CFD1; padding:15px; margin:0 auto; position: relative; color: #FAD9D9; font-size: 11px; font-family: 'Droid Sans', Arial, 'Arial Unicode MS', Helvetica, Sans-Serif; text-align: center; } Change 0075DB to what color you want.
  13. I miss ready your post. I thought you were asking if it does show up. Sorry!
  14. flyalaska

    OceanBlue

    Whats your email? PM it to me and I will send you the adjusted css.
  15. flyalaska

    OceanBlue

    What color do you want? I can do it for you,
  16. The free host is likely the issue
  17. flyalaska

    OceanBlue

    What version of IE? I have tested it on all the major browsers aswell on in ipad IOS7
  18. Don't use IE
  19. flyalaska

    OceanBlue

    Open styles/blue.css Replace all the 0075DB with your color
  20. Is that the code they supplied in the demo?
  21. That's an old FSAcars glitch. Are you using FSACars?
  22. http://forum.phpvms.net/topic/16288-notice-open-flash-chart-exploit/
  23. It only shows your name and email if you are logged in.
×
×
  • Create New...