Jump to content

mark1million

Moderators
  • Posts

    2283
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by mark1million

  1. NO your style sheet you need to find the settings for li entry and change that.
  2. Your ObsessBlue directory, in your skins folder
  3. Its a class setting, wont take you long to sort.
  4. Took me a month to find that tricky setting
  5. I had that its in your css remove the .li css (i think!!) Back your stuff up 1st but its a class setting.
  6. Hey i dont normally get too annoyed but you my friend are taking the complete p*ss. After all the help i gave you, you decide to copy most my content word for word and put on your va. Shocking!!!!!! You should be ashamed! http://airzenavirtual.com/index.php/pages/terms http://www.easyjetva.com/index.php/pages/terms http://airzenavirtual.com/index.php/pages/disclaimer You cant even be bothered to change the wording here you just copy and paste to your site.
  7. Yeh its a bit tricky that one, have a look at the mail_menu.tpl, should be like this <style type="text/css"> .left { width: 150px; float: left; min-height: 300px; padding: 5px 0 15px 5px; } .right { float: left; margin-left:10px; padding-top: 5px; } </style> <div class="left"> <?php if(isset($message)) {echo $message.'<br />';} $folders = MailData::checkforfolders(Auth::$userinfo->pilotid);?> <br /> <b>AIRPilot Mail Menu</b> <ul> <li><a href="<?php echo SITE_URL ?>/index.php/Mail/newmail">New message</a></li> </ul> <b>Folders</b> <ul> <li><a href="<?php echo SITE_URL ?>/index.php/Mail">AIRMail Inbox</a></li> <?php if (isset($folders)) {foreach ($folders as $folder) {echo '<li><a href="'.SITE_URL.'/index.php/Mail/getfolder?id='.$folder->id.'">'.$folder->folder_title.'</a></li>';} } ?> <li><a href="<?php echo SITE_URL ?>/index.php/Mail/sent">Sent Messages</a></li> </ul> <b>Folder Options</b> <ul> <li><a href="<?php echo SITE_URL ?>/index.php/Mail/newfolder">New Folder</a></li> <li><a href="<?php echo SITE_URL ?>/index.php/Mail/deletefolder">Delete A Folder</a></li> </ul> </div> And the mail inbox code should sit inbetween the <div class="mcright"> divs. Give that a try.
  8. Drop me some links again and ill have a look.
  9. I believe you can restrict what a pilot can see on the schedules also preventing him from bidding on flights that he does not have the rank to fly. In the admin section edit the aircrafts, in there you will see minimum rank to fly. In the schedules results tpl (i think) there is an option to uncomment out the code to restrict the display to the aircraft the pilot is ranked to fly. Hope you get what i mean.
  10. Everything needs to sit in a div class="mcright" tag, every template you need this in to for that skin, also a max width of 95% or 700px
  11. Hi what are you trying to login to? To connect to the server just open up your flight sim and go to the multiplayer section and type in the ipaddress of the server and connect, no passwords are required. If you want to display the server ipaddress connection details on your website then just add the server status as an i frame to any page you want it displayed. Link is here, http://fshost.vacentral.net:82/user300.html <iframe src="http://fshost.vacentral.net:82/user300.html" width="200" height="250" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe> Hope that helps.
  12. Hey i dont mind helping you but do me a favor and stop ripping off my site, or at lease ask! The code you are looking for is a if else statement for the images active / inactive the code is listed in these forums if you search.
  13. I have just made the security modifications and everything is fine. I would suggest if your having problems then its normally best to start from scratch.
  14. Hi you have the files in the wrong places. If you remove them all and start again uploading them carefully to their correct locations,
  15. All those colors can be changed in the css have a look.
  16. Free hosting puts too many restrictions in to its configs, they cram as many sites on to one server as they can so they throttle whats available to you and lock down other features that phpvms uses to function correctly.
  17. The easiest way is t use Google translate. You can have it load in what ever your primary language you like.
  18. What part do you need help with?
  19. Come on guys keep it civil. We will all try to help everybody with the knowledge we have all experienced with phpvms, just might take longer some days to get a response. You cant demand help and throw your toys out when you don't get an immediate response.
  20. She will only get the one email warning of her retirement, and yes she will need an account to access the system, as she is now retired nothing else needs to be done, she will continue to be able to login and perform admin functions as normal.
  21. OK you need to make table headers, This should be your structure table th tr Example, echo '<h3 align="left">All Time Greats</h3>'; echo '<table width="100%" border="0" cellspacing="0" cellpadding="1">'; echo '<tr><td width="50%" valign="top">'; echo '<center>'; echo '<b>Top Pilots All Time </b>(Flights Flown)'; echo '<table cellspacing="1" cellpadding="1" border="1">'; echo '<tr>'; echo '<th width="175px"><div align="left">Pilot Details</div></th>'; echo '<th><div align="center">Flights Flown</div></th>'; echo '</tr>'; $all_flights = TopPilotData::alltime_flights(10); foreach($all_flights as $all) { $pilot = PilotData::GetPilotData($all->pilotid); echo '<tr>'; echo '<td><div align="left">'.$pilot->firstname.' '.$pilot->lastname.' - '.PilotData::GetPilotCode($pilot->code, $pilot->pilotid).'</div></td>'; echo '<td><div align="center">'.$all->totalflights.'</div></td>'; echo '</tr>'; } echo '</table>'; echo '</td><td width="50%" valign="top">'; echo '<center>'; echo '<b>Top Pilots All Time </b>(Hours Flown)'; echo '<table cellspacing="1" cellpadding="1" border="1">'; echo '<tr>'; echo '<th width="175px"><div align="left">Pilot Details</div></th>'; echo '<th><div align="center">Hours Flown</div></th>'; echo '</tr>'; $all_hours= TopPilotData::alltime_hours(10); foreach($all_hours as $all) { $pilot = PilotData::GetPilotData($all->pilotid); echo '<tr>'; echo '<td><div align="left">'.$pilot->firstname.' '.$pilot->lastname.' - '.PilotData::GetPilotCode($pilot->code, $pilot->pilotid).'</div></td>'; echo '<td><div align="center">'.$all->totalhours.'</div></td>'; echo '</tr>'; } echo '</table>'; echo '</td></tr>'; echo '</table>'; echo '<br />'; echo '<hr />';
  22. you could always manually add accreditations per the flights, 50 flights award, 100 flights award etc
  23. Even if the member is retired he can still log in.
×
×
  • Create New...