html - Stuff disappears from and moves around on website when refreshed -


i have weird problem on 1 of pages on website when refresh stuff disappears , stuff moves around.

this supposed , when first loaded.

1

and looks when refresh page.

2

<?php     session_start();     if(!isset($_session['usrname'])){         header('location:login.php');     } ?> <!doctype html>  <html lang="en">  <head>      <!-- appears in title bar in web browser -->     <title>jwt haulage group drivers area</title>      <meta name="description" content="jwt haulage group ltd virtual trucking company euro truck simulator 2, uk ,      german truck simulator. have on 600 drivers registered already.">                            <!-- meta stuff required -->      <meta name="keywords" content="jwt, jwt haulage, jwt haulage group, jwt haulage ltd, euro truck simulator 2, ets2,      uk truck simulator, ukts, german truck simulator, gts, virtual trucking company, vtc">      <meta http-equiv="content-type" content="text/html; charset=utf-8" />                             <!-- meta stuff required -->      <link rel="stylesheet" type="text/css" href="styles.css" />                                       <!-- css -->      <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>               <!-- jquery -->      <script type="text/javascript">        var _gaq = _gaq || [];       _gaq.push(['_setaccount', 'ua-37114333-2']);       _gaq.push(['_trackpageview']);        (function() {         var ga = document.createelement('script'); ga.type = 'text/javascript'; ga.async = true;         ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';         var s = document.getelementsbytagname('script')[0]; s.parentnode.insertbefore(ga, s);       })();      </script>      <script>     var currenttime = new date()     var month = currenttime.getmonth() + 1     var day = currenttime.getdate()     var year = currenttime.getfullyear()     </script>  </head>  <body>      <div class='header'>          <img src="./images/jwt%20logo.png" alt="jwt haulage group ltd" width="360" height="86"/>          <h2>drivers area</h2>          <div class='header-links'>              <a target="_blank" href="http://www.facebook.com/pages/jwt-haulage-group-ltd-in-partnership-with-schumacher-logisitics-services/166705200103425?fref=ts" title="like on facebook"><img src='http://n.vdsh.net/hosting/resources/gosocial/png/32/facebook.png' alt="facebook page"/></a>             <a target="_blank" href="http://plus.google.com/share?url=http://www.jwt-group.co.uk" title="share me on google+"><img src='http://n.vdsh.net/hosting/resources/gosocial/png/32/google.png' alt="google+ icon"/></a>             <a target="_blank" href="http://twitter.com/share?url=http://www.jwt-group.co.uk&amp;text=@jwthaulageltd%20been%20driving%20around%20europe%20for%20jwt%20haulage.%20come%20and%20join%20me%20at%20www.jwt-group.co.uk" title="tweet me"><img src='http://n.vdsh.net/hosting/resources/gosocial/png/32/twitter.png' alt="twitter icon"/></a>             <a target="_blank" href="http://www.jwthaulageltd.freeforums.org" title="jwt haulage forum"><img src='http://n.vdsh.net/hosting/dan/jwt/images/jwt%20forums%20logo.png' alt="jwt haulage forum"/></a>             <a target="_blank" href="http://www.jwthaulagegroupts2.freeforums.org" title="jwt haulage ets2 forum"><img src='http://n.vdsh.net/hosting/dan/jwt/images/jwt%20ets2%20forums%20logo.png' alt="jwt haulage ets2 forum"/></a>             <a target="_blank" href="http://www.facebook.com/groups/jwthaulageltd/" title="join our driver group on facebook"><img src='http://n.vdsh.net/hosting/dan/jwt/images/facebook_group.png' alt="facebook driver group"/></a>          </div>          <ul class='drivers-navigationbar'>              <li><a href="drivers-index.php" class='pageinactive' >home</a></li>             <li><a href="drivers-tracker.php" class='pageinactive'>tracker</a></li>             <li><a href="drivers-spot.php" class='pageinactive'>spots</a></li>             <li><a href="drivers-log.php" class='pageactive'>logs</a></li>             <li><a href="drivers-account.php" class='pageinactive'>account</a></li>             <li><a href="logout.php" class='pageinactive'>logout</a></li>          </ul>      </div>      <div class='container'>          <div class='content'>                <div class='inthreetrucksimbar-apply'>              <div class='inthreetrucksimbaruk'>                  <img src="./images/jwt%20ukts-gts%20logo.jpg" alt="jwt haulage group ltd ukts/gts" width="259" height="95"/>              </div>              <div class='inthreetrucksimbareuro2'>                  <img src="./images/jwt%20international%20logo.png" alt="jwt haulage group ltd ets2" width="360" height="86"/>              </div>              </div>              <div class='jwtinternational-application'>                  <h4>jwt log form</h4>                  <h4>warning: not use below form being worked on</h4>                  following form can used log loads jwt in ets2.<br><br>                  <form name="jwtinternational-application-form" class='jwtinternational-application-form' action="apply-send.php"                  method="post">                      <div class='jwtinternational-application-left'>                          <input type="text" class="text-box" name="forum-name" placeholder="registered forum name"/><br>                          <input type="text" class="text-box" name="first-name" placeholder="first name"/><br>                          <input type="text" class="text-box" name="surname" placeholder="surname"/><br>                      </div>                      <div class='clear'>                     </div>                      <input id="submit" type ="submit" value= "submit"/>                  </form>              </div>          </div>          <div class='clear'>         </div>          <div class='footer'>              <div class='footer-text1'>                  <h5>                      <script>                         document.write(day + "/" + month + "/" + year)                     </script>                  </h5>              </div>              <div class='footer-text2'>                  <h5>copyright &copy; <script>document.write(year)</script> jwt haulage group vtc. rights reserved.</h5>              </div>              <div class='clear'>             </div>          </div>      </div>  </body> </html> 


Comments