Jump to content

vader21

Members
  • Posts

    79
  • Joined

  • Last visited

Everything posted by vader21

  1. As mentioned by nightfox, The reason your image slider takes for ever to reveal the image is because the fade in option of your JavaScript for that particular gallery. Remember the timer is in milliseconds meaning 8000 is 8 Seconds. Good job on your website thought.
  2. Correct me if am wrong, but if this gentlemen keeps opening new virtual airlines every now and then. Isn't that a sign of failure i mean, with only 3 pilots in one opens another one etc.. I heard that the best way to start a va is to actually plan it out in pen and paper then you must think of a website. Again for something to stay up and strong you must have a backbone, when you don't that's when things fall and fail. I do not have a long time on these forums but reading through the different posts this is what i think, something am entitled too. Best of Luck!
  3. @James142 Thank you. Even tho it was something simple it took about 2 weeks, mostly creating those 3D cars in Photoshop cs4 Extended. Overall it was fun making it!
  4. Good Day to you sir, i have tried making an intro or promo using after effects. This is what i got the first time i did it ( Road intro ) I know it has nothing to do with flight sim but it can easily be done by just capturing some footage from the Sim its self. Now am not saying am a pro at it i just made that one simple one, but this user here is amazing at making videos FSXFS2002 I don't know how it works for him but i have seen many virtual airline promo videos he has created. Good luck!
  5. vader21

    HTML question

    Yes sir, that is also correct
  6. vader21

    HTML question

    Okay your positioning is the one causing the problem, i think. One of the things i first learned when i studied design was to always have a backbone of something meaning, keep everything centralized. If you put all your css classes in one spot and just call it by ID and Class for individual page that would be a lot easier then making new styles or copy and pasting on every page. Okay let me try to help you out. Start by making these DIVS ( This is just an example. Work the styles out to fit your layout ) The HTML <div id="container"> <div id="header"></div> <div id="body"></div> <div id="footer"></div> </div> "There are only four divs required for this to work. The first is a container div that surrounds everything. Inside that are three more divs; a header, a body and a footer. That's it, all the magic happens in the CSS." The CSS html, body { margin:0; padding:0; height:100%; } #container { min-height:100%; position:relative; } #header { background:#ff0; padding:10px; } #body { padding:10px; padding-bottom:60px; /* Height of the footer */ } #footer { position:absolute; bottom:0; width:100%; height:60px; /* Height of the footer */ background:#6cf; } And For IE #container { height:100%; } Source http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page | © Copyright 1993 - 2010 Matthew James Taylor Now One last thing it looks like you are using full site links for your images, try not using it as it can be easier on you when you change things around. Hope this Helped if not i can try explaining once again
  7. Oh never mind i got things working fine with this <?php $res = SiteData::GetAllNews($row->id); ?>
  8. How about this? <table width="100%" cellspacing="0" cellpadding="0"> <tr> <td>Title</td> </tr> <?php foreach($res as $row) { ?> <tr> <td><?php echo $row->subject;?></td> </tr> <?php } ?> </table> How would i make that work, without having an invalid foreach? Thank you.
×
×
  • Create New...