Jump to content

avdesigns

Members
  • Posts

    285
  • Joined

  • Last visited

Posts posted by avdesigns

  1. Hello, im wondering if you could help me, im having a problem with the bullet points on the default tpl's. there fine when there on the default skin but not with my custom one. As you can see from the attachment they seem to over lap which is not seen in crystal is there a part of the css I can copy over to sort this?

    Thanks

    Jacob

    tva.jpg

  2. We aim to develop a learning environment with in this virtual airline whereas I feel other virtuals are aimed at hour building (not aimed at Marks) this is the reason we are one of the few virtual to have an IFE as we think this will encourage pilots to stay at the keys. In addition to this we are tying to make this more of a community than a virtual airline where we hope to great pilot presence on the teamspeak server/forum which will result in the first aim of a learning environment as it will allow pilots to teach one another. We also provide up to date schedules which I don't think the other thomson virtual offers as thomsons current schedule change less than monthly and I don't think they follow this. Also we offer a modern site which has been inspired by the real world counterparts and has many great features. There's lots of things that could be mentioned but im sure we will be very different than Marks version.

    Kind Regards

  3. Me too! FlyAero was a bad attempt I will agree. I think it was due to the amount of other virtual alliances but with this we have tried to make it unique to other virtuals and with the development I have arranged lots of time to spend on it before launch so there is no way this project will be abandoned :P We are spending hours ensuring the site is fully up to date with the real airline ensuring we show the routes around one year before operated, fully operational website and a frequently updated thomson IFE. Hopefully it shouldn't interfere with the virtual you offer as your's has many good elements!

    Jacob

  4. Hello

    A new thomson virtual is coming soon with a more modern website and more realistic schedule list. We currently have a stable website and a template however we are looking for a Web services director to improve and maintain the site. The individual would be responsible for overseeing the website. They will develop new systems for our use aswell as keeping current systems up to date and bug free, You will know HTML and some PHP/Javascript. For more information inbox me or add me on skype

    tom.png

    WIP

    jacob.axford

    Regards

    Jacob

  5. It would be good if you could make one where you could set dates for the schedules to come in place for example

    TOM34 - EGCC - HETB | Tuesday, Saturday | May 12th 2012 - September 19th 2012. And these schedules would only be shown during them dates. I think it would be very useful for many virtual as it allows us to set up seasonal much easily :)

    Thanks

  6. Hello

    Is there a way to change the popupnews mod to look like this?

    HOME.jpg

    also Is there a way to get them blue borders as I illustrated in the image above?

    <h3>Latest Arrivals</h3>
    <p><?php
    $count = 5;
    $pireps = PIREPData::getRecentReportsByCount($count);
    ?>
    <table width="600px">
    <tr>
    <td class="tableheader">Flight No.</td>
    <td class="tableheader">Pilot</td>
    <td class="tableheader">Departure</td>
    <td class="tableheader">Arrival</td>
    <td class="tableheader">Duration</td>
    <td class="tableheader">Aircraft</td>
    <?php
    if(count($pireps) > 0)
    {
    foreach ($pireps as $pirep)
    {
    {
     $pilotinfo = PilotData::getPilotData($pirep->pilotid);
     $pilotid = PilotData::getPilotCode($pilotinfo->code, $pilotinfo->pilotid);
    }
    ?>
    
    <tr>
     <td class="tablearrivals" ><?php echo $pirep->code.$pirep->flightnum; ?></td>
     <td class="tablearrivals" ><?php echo $pilotinfo->firstname.' '.$pilotinfo->lastname; ?></td>
     <td class="tablearrivals" ><?php echo $pirep->depicao; ?></td>
     <td class="tablearrivals" ><?php echo $pirep->arricao; ?></td>
     <td class="tablearrivals" ><?php echo $pirep->flighttime; ?></td>
     <td class="tablearrivals" ><?php echo $pirep->aircraft; ?></td>
    
    
    </tr>
     <?php
    }}
    else
    {
     echo '<tr><td align="center"><b>There are no recent flights!</b></td></tr>';
    }
    ?>
     </tbody>
     </table>
    
    </p>
    <table width="300" border="0" align="left">
    <tr>
    <td></td>
    <td class="tableheader">New Pilots</td>
    <td></td>
    </tr>
    <?php
    $pilotinfo = PilotData::getallpilots();
    foreach($pilotinfo as $pilot)
    {
    ?>
    <tr>
    <td width="40" class="tableflag"><img src="<?php echo Countries::getCountryImage($pilot->location);?>"></td>
    <td width="190" class="table"><?php echo $pilot->code.$pilot->pilotid.' - '.$pilot->firstname.' '.$pilot->lastname ;?></td>
    <td width="80" class="table"><?php echo $pilot->hub ;?></td>
    </tr><?php
    }
    ?>
    </table>
    <table width="300" border="0" align="right">
    <tr>
    <td></td>
    <td class="tableheader">Latest News</td>
    <td></td>
    </tr>
    <tr>
    <td class="table">Name</td>
    <td class="table">Date</td>
    <td class="table">Link</td>
    </tr>
    </table>
    

    Thanks in advance!

    Jacob

×
×
  • Create New...