Jump to content

Jeff

Members
  • Posts

    1307
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Jeff

  1. Every time one of my flights prices should show something like 151.70 it always removes the 0 on it and it shows up like 151.7 Is there a change I need to make for it to show up as 151.70? If the number is even (ex: 151.00) is comes up like 151
  2. Jeff

    HTML question

    Not Allowed You are not allowed permission to access this page.
  3. Jeff

    Obsess Blue

    It's located in the Stylesheet.css /* regular */ body { margin: 0px; padding: 0px; font-size: 12px; font-family: Arial; background-color: black; /***This is the entire site background color**/ } img { border: 0px; } .size { width: 950px; <--------------------------Located here. margin: 0px auto; } If you change this, you are going to have to do a lot of editing to your website so all the content will line up correctly.
  4. nope, unfortunately that didn't fix it either. Thanks anyways
  5. Stuart, is there a missing code that restricts outranked routes by aircraft? I don't see the code in what you posted. The only thing I see is which I have been using from the start (which still doesn't work). Everything is changed accordingly as you described, and working correctly, but it is still showing "ADD TO BID" on flights which contain aircraft which members are not ranked for.
  6. Jeff

    Badge update?

    Try refreshing the page by clicking F5
  7. Your SIGNATURE is a .png image. All you need to do is create an image using Photoshop, or if you don't have the $$, you can use GIMP (http://www.gimp.org) and create your image. Name it background.png and upload it to your site here: public_html/lib/signatures
  8. Jeff

    ObsessBlue 2.0

    You'll need to edit the .css for this one. I am not sure which ones they are at the moment, but Simpilot did a pretty good job at labeling what each section in there is used for.
  9. Jeff

    ObsessBlue 2.0

    3. is there a way of adding drop down menus in the template? 4. When I go to Ranks or Awards its says that module doesnt exists PLase help
  10. The other way around: Edit the AAL323 AAL323 AAL323 with AAL323-1 AAL323-2 AAL323-3 Next upload your flights to your site.
  11. Jeff

    ObsessBlue 2.0

    The Black and Blue box removal was posted by me earlier (above) CLICK HERE The text inside the ticker is also located in the layout.tpl as well (if I'm not mistaken)
  12. There ya go. 2/3 of your problem fixed. Now for the Menu width.
  13. I just don't see the missing code that would make the Header Images just disappear like that. You might need to wait for another big brain to pop in here to see if they can come up with a solution. On the Menu width problem... Check your .css for it and you can try to use width=100% (or try width="100%") whichever one it asks for to see if that will stretch it across the page, instead of having it stop mid-way through. Sorry I couldn't help you all the way bud.
  14. Not sure! I can't see anything wrong with it. If you added 2 </div> in the the layout.tpl, remove one of them to see if the Header images show without messing up the footer.
  15. You can try pasting the layout.tpl, I think it might be missing something in there. I can't see anything with the Header images coding from the page source.
  16. I'm looking at it at the moment. It's hard to figure out what is causing it by just looking at the Page Source, and not seeing the actual coding. Let me see if I can see anything missing.
  17. the core_navigation.tpl is where you would change the link part of my answer. the </div> part should be located in the layout.tpl
  18. I believe it should be in the layout.tpl file, at least mine is (although I use ObsessBlue)
  19. It looks like you might be missing 2 </div> on the bottom. You probably need to change this: <li><a href="http://qantasvirtual.com/dev/index.php/registration"><font size="1">Register</font></a></li> to this <li><a href="http://qantasvirtual.com/dev/index.php/registration">Register</a></li> That should align the Register link with the others in that menu under Crew.
  20. You can export your flights via the Admin Center as .csv then edit your flights and import them back into the site via the Admin Center.
  21. Simpilot AIRMail 2.1 <<Click
  22. Will have this resolved by this weekend. Sincere apologies go out to all the PVA staff and their members.
  23. Yes you can. Inside /core/modules create 2 folders (if they aren't there already) rank awards then in each of those folders, create their files rank.php awards.php then copy/paste the codes above in their respected file.
  24. This is what is inside the /public_html/core/modules/rank/rank.php file <?php /** * Rank Table v1.0b * By Dimitris 4463 * greeceairwaysva.com/fss * Dimitris4463 on phpVMS forums */ class Rank extends CodonModule { public function index() { $this->set('ranks', RanksData::GetAllRanks()); $this->render('ranks_allranks.tpl'); } } ?> This is what is inside the /public_html/core/modules/awards/awards.php file <?php /** * Award Table v1.0b * By Dimitris 4463 * greeceairwaysva.com/fss * Dimitris4463 on phpVMS forums */ class Awards extends CodonModule { public function index() { $this->set('awards', AwardsData::GetAllAwards()); $this->render('awards_allawards.tpl'); } } ?> Double check to see if yours matches.
×
×
  • Create New...