Jump to content

Recommended Posts

Posted

Sorry guys, just found a problem :(

changing to paid hosting right now :)

Glad to see that you learn from your mistakes, a lot of people on these forums keep asking why their Virtual Airline isn't doing so good and we tell them and they still don't listen. :)

Posted

It is working for me now, I think you are missing a closing div. as the footer is bundled up into the right hand side bar.

This is my layout but i can't seem to find why its over to the right hand side??

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title><?php echo $page_title; ?></title>

<link href="<?php echo SITE_URL ?>/lib/skins/cityportal/style.css" rel="stylesheet" type="text/css" />

<script language="javascript" type="text/javascript">

function clearText(field)

{

if (field.defaultValue == field.value) field.value = '';

else if (field.value == '') field.value = field.defaultValue;

}

</script>

<style>

<!--

a:link {

color:#00205E;

text-decoration: none;

}

a:visited {

color:#00205E;

text-decoration: none;

}

a:hover {

color:#CC0000;

text-decoration: underline;

}

a:active {

color:#CC0000;

text-decoration: none;

}

-->

</style>

<? echo $page_htmlhead; ?>

</head>

<body>

<div id="templatmeo_wrapper">

<div id="templatemo_header">

<div id="site_title">

<h1> <img src="<?php echo SITE_URL ?>/lib/skins/cityportal/images/logo.png" alt="City Portal" /></h1>

</div> <!-- end of site_title -->

<div id="header_right">

<ul id="header_button">

</ul>

<div class="cleaner"></div>

<?php

/*

Quick example of how to see if they're logged in or not

Only show this login form if they're logged in */

if(Auth::LoggedIn() == false)

{ ?>

<form name="loginform" action="<?php echo url('/login'); ?>" method="post">

Sign-in with your pilot id or email, or <a href="<?php echo url('/registration'); ?>">register</a><br />

<input type="text" name="email" value="" onclick="this.value=''" />

<input type="password" name="password" value="" />

<input type="hidden" name="remember" value="on" />

<input type="hidden" name="redir" value="index.php/profile" />

<input type="hidden" name="action" value="login" />

<input type="submit" name="submit" value="Log In" />

</form>

<?php

}

?>

</div>

</div> <!-- end of templatemo_header -->

<div id="templatemo_banner"></div>

<!-- end of templatemo_banner -->

<div id="templatemo_menu">

<ul>

<li><a href="<?php echo url('/'); ?>">Home</a></li>

<?php

if(!Auth::LoggedIn())

{

// Show these if they haven't logged in yet

?>

<li><a href="<?php echo url('/registration'); ?>">Register</a></li>

<?php

}

else

{

// Show these items only if they are logged in

?>

<li><a href="<?php echo url('/profile'); ?>">Pilot Center</a></li>

<li><a href="<?php echo url('/Fleet'); ?>">Fleet</a></li>

<?php

}

?>

<li><a href="<?php echo url('/pilots'); ?>">Pilots</a></li>

<li><a href="<?php echo url('/acars') ?>">Live Map</a></li>

<li><a href="<?php echo url('/Timetable'); ?>">Timetable</a></li>

<?php echo $MODULE_NAV_INC;?>

<?php

if(Auth::LoggedIn())

{

if(PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN))

{

echo '<li><a href="'.fileurl('/admin').'">Admin Center</a></li>';

}

?>

<li><a href="<?php echo url('/logout'); ?>">Log Out</a></li>

<?php

}

?>

</ul>

</div> <!-- end of templatemo_menu -->

<div id="templatemo_content_wrapper">

<?php

if(MainController::$activeModule == 'FRONTPAGE')

echo $page_content;

else

{

?>

</div> <!-- end of templatemo_content_wrapper -->

<div id="templato_other_content">

<div class="templatemo_box">

<h2><span></span><?php echo $page_title; ?></h2>

<div class="body">

<p><?php echo $page_content; ?></p>

</div>

<div class="box_bottom"><span></span></div>

</div>

</div>

<?php

}

?>

</div> <!-- end of templatemo_wrapper -->

<div id="templatemo_footer_wrapper">

Copyright ©Air Wales Virtual| <a href="http://www.phpvms.net/">Powered By phpVMS</a> </div>

<!-- end of footer -->

</div> <!-- end of templatmeo_footer_wrapper -->

</body>

</html>

Posted

Some points of criticism:

  • Customise your design! Your site looks like any other with that template therefore it is not unique. Get some red in there and make it reflect your brand
  • Change the banner at the top - how does a picture of the terminal at CDG reflect your airline?
  • Change the airport logos on the sidebar. Or get logos. Pictures of the terminal buildings squashed together are not very attractive at all
  • I would also change A320 to just A320.

At least your operations are realistic :)

Posted

Some points of criticism:

  • Customise your design! Your site looks like any other with that template therefore it is not unique. Get some red in there and make it reflect your brand
  • Change the banner at the top - how does a picture of the terminal at CDG reflect your airline?
  • Change the airport logos on the sidebar. Or get logos. Pictures of the terminal buildings squashed together are not very attractive at all
  • I would also change A320 to just A320.

At least your operations are realistic :)

Thanks for your comments i will take these into account, where do i change the colour of my titles in my boxes i.e recent bids, online events etc ?

Posted

Thanks for your comments i will take these into account, where do i change the colour of my titles in my boxes i.e recent bids, online events etc ?

In your css file :) Look for the 'h2' section and edit the 'color:' attribute.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...