Tom
Members-
Posts
1517 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by Tom
-
No my code was just as an example. What are you trying to achieve? The HTML you have in layout.tpl is the default crystal skin, however the css I saw earlier appeared to be from a downloaded template. If you want to use that template you need to take the HTML from the files they provide and put it between the <body> tags in layout.tpl (replacing what's in there at the moment, we can add the rest from there).
-
You still have the html for the crystal skin in your layout.tpl. You need to take the html code from the template you're using and put it into layout.tpl, and upload that new layout.tpl to your own skin folder along with the css. Here's a quick example, I want my site to look like this: <div id="header">Header</div> <div id="main">Main Content</div> <div id="footer">Footer</div> So in my layout.tpl I have the following: <html> <head> <title><? echo $page_title; ?></title> <link rel="stylesheet" media="all" type="text/css" href="<? echo SITE_URL; ?>/lib/skins/myskin/style.css" /> <? echo $page_htmlhead; ?> </head> <body> <? echo $page_htmlreq; ?> <div id="header">Header</div> <? Template::Show('core_navigation.tpl'); //For my nav links ?> <div id="main"><? echo $page_content; ?></div> <div id="footer">Footer <a href="http://www.phpvms.net" target="_blank">powered by phpVMS</a></div> </body> </html>
-
The code from your template needs to go into layout.tpl correct, with: <? echo $page_content; ?> where you want the content to go. You edit the navigation links in core_navigation.tpl.
-
VAForum 2 For updates included see changelog below. Update from VAForum1/VAForum2 Pre-release: - Import "update.sql" file to database - Upload all files provided in core/ folder (necessary changes to all templates) - Add the following somewhere between your <head> and </head> tags in layout.tpl: <? Template::Show('forum_style.tpl'); ?> Fresh install: - Import "install.sql" file to database - Upload all files provided in core/ folder - Add the following somewhere between your <head> and </head> tags in layout.tpl: <? Template::Show('forum_style.tpl'); ?> Credit to simpilot for the VAForum original on which this (and future modifications) are based. Code is provided "as is", all the same rules & licenses apply: -------------------------------- Changelog: 2.0: - Further improved security - Addition of forum categories & admin-only categories - Addition of category and board ordering - Addition of user signatures (phpVMS Signatures) - Images wider than post container automatically resized - Improved post layout - Added support for the following HTML tags: <p><a><b><i><em><strong><ul><ol><li> - Added support for the following "BBCode style" codes (they're slightly different): [b][/b], [u][/u], [i][/i], [p][/p], [img][/img], [url][/url], [list][/list], [*][/*] Pre-release: - Disallows the use of Admin pages to non-Administrator ranks (Prevents banning of members by non-Admins & guests). - All posting, editing, deleting etc pages are restricted to logged in users (Prevents guests posting). - Disallows all HTML from topic/board titles and descriptions. - Limits HTML in posts to the following tags: <p>, <a>, <b>, <strong>, <i>, <em>, <ul>, <ol>, <li> and <img> -------------------------------- If you have any suggestions/requests for features in the next release feel free to post them.
-
Doesn't appear to be fixed.. Try this code: #logotop { width:1000px; margin:0 auto; clear:both; font-family: Arial, Helvetica, sans-serif; font-size: 15px; }
-
Nice skin. Couple of things I would take a look at: Corners on the images at the side (white) and how the header is positioned, in larger resolutions it moves over:
-
Hi, this particular skin is not for sale at all sorry.. but any way, that's for another thread. Could I have feedback on the airline & skin please?
-
Welcome to the new European Gateway! Our brand new website has been designed to look great, be easy to use and make the most of the features of newer browsers, while still working well for our friends the Internet Explorer users (Yes, we still love you. Don't worry). With the new features of the phpVMS system tracking, and the use of existing SimFly systems still available, we feel this can help us cater for a wider range of pilots. We are still working on additional features to the website, including a bespoke Pilot centre and additional Forum modifications. Our current schedules take us within Europe, as well as the East over to Asia, Africa and Oceania. In the near future we hope to be expanding these to the Americas, as well as opening hubs in North America with the possibility of more hubs in the East. Our fleet consists of: Airbus A320 Airbus A321 ATR 72-500 B757-300 B767-300 B747-400 B777-300 Hopefully there's something for you here at EUG, and if you have any questions feel free to contact us - either by the contact form linked on the homepage, at support@flyeug.co.uk, or via the PM system here. www.flyeug.co.uk
-
That's spamming rather than hacking. Recapcha is relatively good so I would expect it's just someone messing around.
-
Hello, With this module is there a limit to how small a loop can be? i.e. can I make it EGKK->KMIA, KMIA->EGKK or would I have to do EGKK->KJFK, KJFK->KMIA, KMIA->EGKK or longer? Thanks
-
Red is quite hard to work with I find. For that airline I think white with a hint of red would work best (to match the aircraft livery). Nice layout, something new
-
Oookkaayyy.. That's probably not a topic for conversation on this forum... :S
-
Save confusion and just link directly to the file: <? echo SITE_URL; ?>/lib/skins/SKIN_NAME/images/IMAGE_NAME.gif
-
Most likely because you don't have those images uploaded...
-
HTML 5 Compatibility & Implenting into phpVMS
Tom replied to AFVA | Mitchell's topic in Support Forum
I aim to make all my skins as compatible as possible, including the hideous IE. If you're going to use HTML5 it's definitely worth having a little bit of php to determine which browser they're on and render a different set of HTML and CSS accordingly. Developing HTML5-only at this stage and blaming your users for not upgrading yet is, as mentioned, only going to cause you to lose out. -
HTML 5 Compatibility & Implenting into phpVMS
Tom replied to AFVA | Mitchell's topic in Support Forum
At the moment HTML5 is only worth playing with, don't even bother considering it as your website code. People are still using IE6, so life will be more difficult for yourself as you'll have to hack it for all the current browsers and then IE6... That is if you want people to use your website... If you want more fancy features, learn current technologies better, its all possible Oh and answering your second question, yes. phpVMS is all done in php, your HTML5 skin will just work around that. -
If you're going to redirect people to vahoster.info why don't you just tell people that in the first place?
-
Sorry to bring this up again, but I just noticed: You do realise under the license the model is released on it's illegal to sell on another persons work right, repackaged or not?
-
If you're trying to make a sticky footer I'd recommend this: http://ryanfait.com/resources/footer-stick-to-bottom-of-page/ It's more compatible.
-
Yes you've used loads, all with a class accounted for in the CSS you wrote? To make your own life easier, give the divs names (header) rather than codes (z12) P.s. I just noticed, the home link takes you to lufthansava.com
-
Did you code this yourself? Just wondering why you've used so many <b> (bold) tags with no content.. Also, the code you mentioned above should just be placed in appropriate positions in header.tpl or footer.tpl (as you haven't used layout.tpl).
-
2.4GHz Q6600 Quad nVidia 8800 GTX 768MB 5GB RAM 2x500GB HDD, RAID 0 W7 64bit FSX Also, for those who don't know where to find their specs, this is a handy little tool: http://www.piriform.com/speccy
-
What did you expect, it's a free skin. Ah, the advantages of having your own...
-
It's unrealistically good quality, probably 100% CGI, 0% game-play. It'll just once again raise expectations higher than what they will eventually provide. I'm definitely not expecting water of that quality.