Jump to content

monkeypaw201

Members
  • Posts

    70
  • Joined

  • Last visited

Everything posted by monkeypaw201

  1. Well on first glance it looks like something is wrong/missing from your local.config.php.. did you install it? Go here to install it: http://www.vpia.org/virtualairblue/install/install.php and if you did, delete that directory
  2. Alright, so the next piece of the fix also fixes the popup windows.. since I changed quite a few files in several places, I think it would be best to just call it version 1.1 Download Link: http://www.la92.com/thread-5.html Note: Origial post link updated
  3. Update: the fix above fixes everything except the popups, working on that now..
  4. Hi Joshua, unfortunately, this template doesn't natively have drop downs.
  5. Alright folks, sorry for the delayed response, I was looking for an easy way of fixing this without overwriting any core template files. I believe I have a solution: In /admin/lib/aitc/header.tpl move: <?php Template::Show('core_htmlhead.tpl'); ?> From before the javascript includes (line 14) to after them (line 23 or 24) So instead of this: <!-- Libraries --> <link type="text/css" href="<?php echo SITE_URL?>/admin/lib/aitc/css/layout.css" rel="stylesheet" /> <?php Template::Show('core_htmlhead.tpl'); ?> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/jquery-1.3.2.min.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/easyTooltip.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/jquery-ui-1.7.2.custom.min.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/jquery.wysiwyg.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/hoverIntent.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/superfish.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/jquery.tablesorter.min.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/searchbox.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/custom.js"></script> <!-- End of Libraries --> You should have: <!-- Libraries --> <link type="text/css" href="<?php echo SITE_URL?>/admin/lib/aitc/css/layout.css" rel="stylesheet" /> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/jquery-1.3.2.min.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/easyTooltip.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/jquery-ui-1.7.2.custom.min.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/jquery.wysiwyg.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/hoverIntent.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/superfish.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/jquery.tablesorter.min.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/searchbox.js"></script> <script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/aitc/js/custom.js"></script> <?php Template::Show('core_htmlhead.tpl'); ?> <!-- End of Libraries -->
  6. I'll take a look and let you guys know how to fix it
  7. I was looking through the database, and I was just wondering how administrators are specified / determined.. as far as I could tell (I may have missed something) I couldn't see any distinction between admins and non-admins in the `pilots` table.
  8. There is on the one you gave me.. Line 1
  9. Ahh.. Lets try this: Remove <div id="main"> from pilots_list.tpl and put it at the bottom (last thing) of header.tpl Then move 61-64 from pilots_list.tpl to footer.tpl
  10. Oops, Try just removing 63 and 64, and put this into footer.tpl: </div> <div id="clear"></div>
  11. Ok, if you are willing to be a little experimental, try removing lines 61-64 from pilots_list.tpl and adding the following code to footer.tpl (before anything else) </div> <div class="leftbottom"></div> </div> <div id="clear"></div>
  12. +1 On that.. it would make debugging easiest
  13. No, the layout.tpl or whatever script is used to include the pilots_list.tpl
  14. Uhh, no.. go lower.. would you mind posting the whole page? Or everything between: <div id="main"> and <div id="footer">
  15. Well, it looks like your South Hub is outside of your content div tag.. which would explain why its getting positioned down there. If you move it up above the <div id="clear"/> and then put it right above the </div> it should work.
  16. Oh, haha, my bad.. I didn't scroll down Lets see what magic I can do
  17. Ok, so it looks fine, formatting wise anyways (overall).. what were you trying to accomplish? EDIT: Rather, what is the problem?
  18. Do you have a link or screenshot to accompany your request?
  19. You know I know what the problem is, but I'm not sure I know the fix... If you MySQL Database's encoding is set correctly, the only thing I can think of is that your pages are set incorrectly (encoding is not my forte) but I do believe the meta tag below: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> Should be changed to something that supports Chinese so the browser parses it correctly.
  20. Oh, Sorry folks, I forgot to mention how to edit the colors.. In /aitc/cs/layout.css on line 7, you can change @import 'color_blue.css'; with: @import 'color_red.css'; To get a red theme instead of blue.
  21. Haha, thanks Jeff. I already have a fair list of things to adjust, the functionality is there, just some minor formatting needs to be fixed, if you find something major let me know
×
×
  • Create New...