Center web page on browser screen in Dreamweaver?

All web sites I have created and published in Dreamweaver have the pages come up on the browser screen on the left side. Is there a way to set up a site so the pages come up centered on all browser pages?

Good day, I have read the above posts, and other posts/videos online, tried many, but none seem to work. I'm wondering if it's because the page elements have absolute positioning, but maybe someone can help. Below is the html code, then below that i've included the css coding, i realize it's not clean, but just want to address the centering issue at this time.
Any help is appreciated, remember I'm not a coder
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
.SectionTEXT {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-style: normal;
    line-height: 45px;
    color: #666666;
    background-color: #FFFFFF;
    letter-spacing: normal;
    text-align: left;
    word-spacing: normal;
    position: relative;
    width: 542px;
    left: 400px;
    bottom: 20px;
    text-decoration: none;
.FooterTEXT {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: normal;
    line-height: normal;
    font-weight: light;
    font-variant: normal;
    text-transform: none;
    color: #FFFFFF;
    height: 35px;
    width: 904px;
    position: relative;
    left: 10px;
    top: 10px;
#div_18 .SectionTEXT p a {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-style: normal;
    line-height: 45px;
    font-weight: normal;
    font-variant: normal;
    color: #666666;
a:hover {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-style: normal;
    line-height: 45px;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    color: #FF0000;
    text-decoration: none;
.nameplate {
    font-family: Blue;
    color: #666;
    font-style: normal;
    font-weight: inherit;
.forwardSlash {
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
    font-weight: inherit;
.verticalSlash {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: lighter;
    color: #03AAF3;
.namePlateNOW {
    font-family: "Briem Akademi Std Semibold";
    font-style: inherit;
    font-weight: inherit;
    color: #F00;
.efitnesslogo {
    color: #FFF;
    visibility: hidden;
#div_18 .SectionTEXT p a {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    visibility: visible;
    color: #666666;
#HD1 {
    position: absolute;
    height: 352px;
    width: 230px;
    left: 10px;
    top: 0px;
#HD2 {
    position: absolute;
    height: 352px;
    width: 230px;
    left: 240px;
    top: 0px;
#HD3 {
    position: absolute;
    height: 352px;
    width: 230px;
    left: 470px;
    top: 0px;
#HD4 {
    position: absolute;
    height: 352px;
    width: 230px;
    left: 700px;
    top: 0px;
.GhostedBar {
    position: absolute;
    height: 105px;
    width: 570px;
    left: -10px;
    top: 190px;
    background-image: url(IMAGES/WhiteBar.png);
.WHTGRYBAR{
    position: absolute;
    height: 70px;
    width: 955px;
    top: 369px;
    left: 0px;
    background-repeat: no-repeat;
    background-image: url(IMAGES/WHT_GRAY_BOX_WRAP.svg);
.WHTGRYSHADOW{
    position: absolute;
    height: 75px;
    width: 924px;
    top: 370px;
    left: 4px;
    background-repeat: no-repeat;
    background-image: url(IMAGES/WHT_GRAY_SHADOW.png);
.BkgrndNAV {
    background-color: #C3D3F2;
    height: 1200px;
    width: 897px;
    position: absolute;
    left: 31.5px;
    top: 362.5px;
    opacity:
#MembersFtrContainer {
    position: absolute;
    height: 65px;
    width: 944px;
    left: 8px;
    top: 1630px;
    border-top: solid;
    border-top-color: #FF0A00;
    border-top-width: 1px;
    border-bottom: solid;
    border-bottom-color: #FFFFFF;
    border-bottom-width: 1px;
    border-left: solid;
    border-left-color: #FFFFFF;
    border-left-width: 1px;
    border-right: solid;
    border-right-color: #FFFFFF;
    border-right-width: 1px;
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 11%, #bfd3fc 55%, #3e78fd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(11%,#ffffff), color-stop(55%,#bfd3fc), color-stop(100%,#3e78fd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 11%,#bfd3fc 55%,#3e78fd 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffffff 11%,#bfd3fc 55%,#3e78fd 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff 11%,#bfd3fc 55%,#3e78fd 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ffffff 11%,#bfd3fc 55%,#3e78fd 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#3e78fd',GradientType=0 ); /* IE6-9 */
</style>
<link href="Index.css" rel="stylesheet" type="text/css">
<script id="form_init_script" data-name="" src="common/js/form_init.js" type="text/javascript"></script><link rel="stylesheet" type="text/css" href="common/css/jquery-ui-1.8.5.custom.css"></link><link rel="stylesheet" type="text/css" href="common/css/normalize.css"></link><script type="text/javascript" src="common/libs_js/jquery-1.4.4.min.js"></script><link id="theme" href="theme/default/css/default.css" type="text/css" rel="stylesheet"></link><title>e-fitness NOW Origin</title><script type="text/javascript" src="common/libs_js/jquery-ui-1.8.9.custom.min.js"></script><script type="text/javascript" src="common/libs_js/jquery.ui.datepicker.js"></script><script type="text/javascript" src="common/libs_js/easyXDM/easyXDM.min.js"></script><script type="text/javascript" src="common/js/jquery.validate.js"></script><script type="text/javascript" src="common/libs_js/jquery.metadata.js"></script><script type="text/javascript" src="common/libs_js/jquery.placeholder.min.js"></script><script type="text/javascript" src="validation_data.js?249"></script><script type="text/javascript" src="common/js/validation.js"></script><script type="text/javascript" src="common/js/conditionals.js"></script><script type="text/javascript" src="common/js/lang/messages_validation.js"></script><script type="text/javascript" src="common/js/lang/messages_datepicker.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=960, user-scalable=yes"/><title>Index</title>
<link rel="stylesheet" href="jQuery/themes/base/jquery.ui.all.css?version=11">
<style type="text/css">
a:link {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-style: normal;
    line-height: 45px;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    color: #666666;
    text-decoration: none;
a:visited {
    text-decoration: none;
    color: #666666;
a:active {
    text-decoration: none;
    color: #666666;
body,td,th {
    color:#666666;
.hover {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-style: normal;
    line-height: 45px;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    color: #FF0000;
body {
    margin-top: 0px;
.NEWnav {
    position: absolute;
    height: 45px;
    width: 920px;
    left: 20px;
    top: 380px;
</style>
<script src="jQuery/jquery-1.4.4.js"></script>
<script src="jQuery/ui/jquery.ui.core.js"></script>
<script src="jQuery/ui/jquery.ui.widget.js"></script>
<script src ="jQuery/ui/jquery.ui.tabs.js"></script>
<script>
$(function(){
        $("#Tab_5").tabs({});
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
</script>
</head>
<body bgcolor="#3E78FD" text="#666666" onLoad="MM_preloadImages('IMAGES/FitnessProgHvrClkBttn.png','IMAGES/What_HowHvrClkBttn.pn g','IMAGES/EnrollTodayHvrClkBttn.png','IMAGES/MemberLoginHvrClkBttn.png','IMAGES/GrnButton HvrClk.png','IMAGES/FitnessProgHvrClkBttn.svg','IMAGES/What_HowHvrClkBttn.svg','IMAGES/Enr ollTodayHvrClkBttn.svg','IMAGES/MemberLoginHvrClkBttn.svg','IMAGES/OriginHvrClkBttn1.svg', 'IMAGES/FitnessProgHvrClkBttn1.svg','IMAGES/What_HowHvrClkBttn1.svg','IMAGES/EnrollTodayHv rClkBttn1.svg','IMAGES/MemberLoginHvrClkBttn1.svg')">
<div id="div_1">
<div align="center">
  <div id="HD1"><img src="IMAGES/DBS_FOTOSEARCH_u14758523.png" width="230" height="352" alt="Women Competitive Swimmer" /></div>
  <div id="HD2"><img src="IMAGES/DBS_FOTOSEARCH_u18569747.png" width="230" height="350" alt="Hurdler" /></div>
  <div id="HD3"><img src="IMAGES/DBS_FOTOSEARCH_u24747386.png" width="230" height="350" alt="Golfer" /></div>
  <div id="HD4"><img src="IMAGES/DBS_FOTOSEARCH_u21161806.png" width="230" height="351" alt="Marathon Runners" /></div>
  <div class="GhostedBar"></div>
</div>
<div class="overlayLOGO">
  <img src="IMAGES/efitnessLOGO_copy1.svg" alt="e fitness now" width="508">
</div>
<!--end overlayLOGO div-->
</div>
<!--end headerImage div-->
<!-- end div_1-->
</div>
<div class="BkgrndNAV"></div>
<div class="WHTGRYSHADOW"></div>
<div class="WHTGRYBAR"></div>
<div class="NEWnav">
<a href="Index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Origin','','IMAGES/OriginHvrClkBttn1.svg',1)"><img src="IMAGES/OriginNormBttn1.svg" alt="Origin Page" width="180" height="45" id="Origin"></a>
     <a href="FitnessPrograms.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('FitnessPrograms','','IMAGES/FitnessProgHvrClkBttn1.svg',1)"><i mg src="IMAGES/FitnessProgNormBttn1.svg" alt="Fitness Programs Page" width="180" height="45" id="FitnessPrograms"></a>
       <a href="Learn.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Learn','','IMAGES/What_HowHvrClkBttn1.svg',1)"><img src="IMAGES/What_HowNormBttn1.svg" alt="Learn What & How" width="180" height="45" id="Learn"></a>
       <a href="Enroll.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Enroll','','IMAGES/EnrollTodayHvrClkBttn1.svg',1)"><img src="IMAGES/EnrollTodayNormBttn1.svg" alt="Enroll Today Page" width="180" height="45" id="Enroll"></a>
       <a href="Members.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Members','','IMAGES/MemberLoginHvrClkBttn1.svg',1)"><img src="IMAGES/MemberLoginNormBttn1.svg" alt="Members Page" width="180" height="45" id="Members"></a>
</div>
<div id="div_18">
    <img src="IMAGES/FOTOSEARCH_x19148847.png" name="Image_14" id="Image_14" />
  <div class="INTROtext">
    <p>"WELCOME…Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est."</p>
  </div>
</div>
<div id="div_19">
    <img id="Image_15" src="IMAGES/stock-photo-12488366-man-playing-golf.png" />
  <div class="SectionTEXT">
    <p>Sports Conditioning &amp; <br>
      Personal Fitness Programs: <br>
      <a href="http://www.youtube.com/watch?v=4a0Q-IAqO8U" target="_blank" class="hover">Triathlons</a> | Running | Cycling<br>
      Swimming | Climbing | Surfing…</p>
  </div>
</div>
<div id="div_20">
    <img id="Image_16" src="IMAGES/000014338250_HDFlashVideo copy.png" />
  <div class="SectionTEXT">
    <p>Full Course Videos: <br>
      What We Do &amp; <br>
    How e|fitnessNOW Programs Work for You … </p>
  </div>
</div>
<div class="SectionTEXT" id="div_21">
    <img id="Image_17" src="IMAGES/stock-photo-17198908-success-flow-chart-on-a-blackboard.png" />
    <div class="SectionTEXT">
    <p><br>
      Learn About Advanced Conditioning Programs…    </p>
  </div>
</div>
<div id="div_23">
    <img src="IMAGES/Bigstock_28225811.png" alt="Enroll Today Image of Track &amp; Field Hurdlers" id="Image_24" />
  <div class="SectionTEXT"> <br>
      Fly Over Hurdles…<br>
      Sign-Up with an e|fitnessNOW Trainer Today!
  </div>
</div>
<div id="MembersFtrContainer">
  <div id="MemberFtrInsideContainer">
    <div class="FooterTEXT">© 2012–2017 e|fitnessNOW and e|fitnessTRAINER. All rights reserved. web design: grafacha.com | web development: Content for  class</div>
  </div>
</div>
</body>
</html>
CSS
@import url("webfonts/DroidSans/stylesheet.css");
#div_1
    height : 349px;
    left : 8px;
    overflow : hidden;
    position : absolute;
    top : 11px;
    width : 944px;
    border-top: solid;
    border-top-color: #FF0A00;
    border-top-width: 1px;
    border-bottom: solid;
    border-bottom-color: #FF0A00;
    border-bottom-width: 1px;
.headerImage {
    position: absolute;
    width: 923px;
    height: 350px;
    margin-left: 10px;
.overlayLOGO {
    position: absolute;
    top: 205px;
    background-repeat: no-repeat;
    width: 590px;
    height: 150px;
    left: 20px;
    visibility: visible;
#efitnessLOGO
    width: 5.823in;
    height: 1.938in;
    position: absolute;
    top: 25px;
    left: 45px;
    visibility: visible;
#textheader_3
    height : 104px;
    left : 46px;
    overflow : hidden;
    position : absolute;
    top : 11px;
    width : 451px;
    color : #575756;
    font-family : Arial,sans-serif;
    font-size : 78px;
    line-height : 104px;
    margin-top : 0;
    width : 100%;
#textheader_3 a
    color : #575756;
    text-decoration : none;
#Tab_5
    left: 0px;
    top: 369px;
    width : 960px;
    position: absolute;
    height: 55px;
#div_18
    height : 220px;
    left : 8px;
    position : absolute;
    top : 440px;
    width : 944px;
    border-top: solid;
    border-bottom: solid;
    border-bottom-color: #FF0A00;
    border-top-color: #FF0A00;
    border-bottom-width: 1px;
    border-top-width: 1px;
    background-color: #FFF;
#Image_14
    height : 220px;
    left : 0px;
    overflow : hidden;
    position : absolute;
    top : 0px;
    width : 380px;
#div_19
    height : 220px;
    left : 8px;
    overflow : hidden;
    position : absolute;
    top : 680px;
    width : 944px;
    background-color : #ffffff;
    border-bottom: solid;
    border-bottom-color: #FF0A00;
    border-bottom-width: 1px;
    border-top: solid;
    border-top-color: #FF0A00;
    border-top-width: 1px;
#Image_15
    height : 220px;
    left : 0px;
    overflow : hidden;
    position : absolute;
    top : 0px;
    width : 380px;
#div_20
    height : 220px;
    left : 8px;
    overflow : hidden;
    position : absolute;
    top : 920px;
    width : 944px;
    background-color : #ffffff;
    border-top: solid;
    border-top-color: #FF0A00;
    border-top-width: 1px;
    border-bottom: solid;
    border-bottom-color: #FF0A00;
    border-bottom-width: 1px;
#Image_16
    height : 220px;
    left : 0px;
    overflow : hidden;
    position : absolute;
    top : 0px;
    width : 380px;
#div_21
    height : 220px;
    left : 9px;
    overflow : hidden;
    position : absolute;
    top : 1160px;
    width : 943px;
    background-color : #ffffff;
    border-top: solid;
    border-top-color: #FF0A00;
    border-top-width: 1px;
    border-bottom: solid;
    border-bottom-color: #FF0A00;
    border-bottom-width: 1px;
#Image_17
    height : 220px;
    left : 0px;
    overflow : hidden;
    position : absolute;
    top : 0px;
    width : 380px;
#div_23
    height : 220px;
    left : 9px;
    overflow : hidden;
    position : absolute;
    top : 1400px;
    width : 943px;
    background-color : #ffffff;
    border-top: solid;
    border-top-color: #FF0A00;
    border-top-width: 1px;
    border-bottom: solid;
    border-bottom-color: #FF0A00;
    border-bottom-width: 1px;
#Image_24
    height : 220px;
    left : 0px;
    overflow : hidden;
    position : absolute;
    top : 0px;
    width : 380px;
#div_22
    height : 300px;
    left : 8px;
    overflow : hidden;
    position : absolute;
    top : 1632px;
    width : 944px;
    border-top: solid;
    border-top-color: #FF0A00;
    border-top-width: 1px;
    border-bottom: solid;
    border-bottom-color: #FFFFFF;
    border-bottom-width: 1px;
    border-left: solid;
    border-left-color: #FFFFFF;
    border-left-width: 1px;
    border-right: solid;
    border-right-color: #FFFFFF;
    border-right-width: 1px;
    background: #ffffff; /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d 3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc 2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiB ncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogI CAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3R vcCBvZmZzZXQ9IjY2JSIgc3RvcC1jb2xvcj0iI2JmZDNmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZ mZzZXQ9Ijg0JSIgc3RvcC1jb2xvcj0iIzhjYjBmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ 9IjEwMCUiIHN0b3AtY29sb3I9IiMzZTc4ZmQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+C iAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJ hdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #ffffff 0%, #bfd3ff 66%, #8cb0ff 84%, #3e78fd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(66%,#bfd3ff), color-stop(84%,#8cb0ff), color-stop(100%,#3e78fd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%,#bfd3ff 66%,#8cb0ff 84%,#3e78fd 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%,#bfd3ff 66%,#8cb0ff 84%,#3e78fd 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%,#bfd3ff 66%,#8cb0ff 84%,#3e78fd 100%); /* IE10+ */
    background: linear-gradient(to bottom, #ffffff 0%,#bfd3ff 66%,#8cb0ff 84%,#3e78fd 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#3e78fd',GradientType=0 ); /* IE6-8 */
<style>
      #docContainer .fb_cond_applied{ display:none;     visibility: visible;
    </style><noscript>
      <style>
      #docContainer
      .fb_cond_applied{ display:inline-block; }
</style>
#div_24 {
    height: 290px;
    width: 220px;
    background-color: #3e78fd;
    top: 11px;
    left: 246px;
    position: absolute;
    visibility: visible;
    border-left: solid;
    border-left-color: #FFFFFF;
    border-left-width: 1px;
    border-right: solid;
    border-right-color: #FFFFFF;
    border-right-width: 1px;
#div_25 {
    height: 290px;
    width: 220px;
    background-color: #3e78fd;
    top: 11px;
    left: 479px;
    position: absolute;
    visibility: visible;
    border-left: solid;
    border-left-color: #FFFFFF;
    border-left-width: 1px;
    border-right: solid;
    border-right-color: #FFFFFF;
    border-right-width: 1px;
#div_26 {
    height: 290px;
    width: 220px;
    background-color: #3e78fd;
    top: 11px;
    left: 710px;
    position: absolute;
    visibility: visible;
    border-left: solid;
    border-left-color: #FFFFFF;
    border-left-width: 1px;
    border-right: solid;
    border-right-color: #FFFFFF;
    border-right-width: 1px;
a:hover {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-style: normal;
    line-height: 45px;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    color: #FF0000;
    text-decoration: none;
.INTROtext {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: inherit;
    line-height: normal;
    font-weight: inherit;
    font-variant: normal;
    color: #666666;
    background-color: #FFFFFF;
    letter-spacing: normal;
    text-align: left;
    word-spacing: normal;
    position: absolute;
    width: 525px;
    left: 400px;
    bottom: 20px;
    text-decoration: none;
    top: 10px;
    text-align: justify;
#MemberFtrInsideContainer {
    background-color: #3e78fd;
    position: absolute;
    visibility: visible;
    height: 55px;
    width: 924px;
    left: 10px;
    top: 10px;
    border-left: solid;
    border-left-color: #FFFFFF;
    border-left-width: 1px;
    border-right: solid;
    border-right-color: #FFFFFF;
    border-right-width: 1px;

Similar Messages

  • When i try to open a web page, a blue screen appears and it is telling me " safari cannot open the page because i am not connected to the internet. i have an iphone, no problem and a laptop with connection - no problem - not sure what the trouble is.

    when i try to open a web page, a blue screen appears - message says - sarfari cannot open the page because it is not connected to the internet. i have an iphone - no proble and a laptop - no problem as well.
    what is wrong?

    There are other things that need attention:
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    *Shockwave Flash 10.0 r32
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/

  • Can no longer backspace to previous web page while browsing?

    Can no longer backspace to previous web page while browsing?

    I used Google and found this, you may find it useful.
    http://hints.macworld.com/article.php?story=20120727025535867

  • Why don't any web pages fit the screen? I have to zoom adjust every single page.

    why don't any web pages fit the screen? I have to zoom adjust every single page.

    You can use an extension to set a default font size and page zoom on web pages:
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/

  • Aligning whole web page for browser in Dreamweaver CS4

    Hi, I am trying to align my web page so that it is central on screen when viewed in a browser?
    Can any one help??!
    Thanks.
    Andrew.

    Sorry for the delayed reply!
    Web address is www.williamwellschauffeuredcars.co.uk & My code is as below - Nothing special!
    <!-- saved from url=(0014)about:internet -->
    <html>
    <head>
    <title>William Wells Chauffeured Cars - Luxury Chauffeur Driven Car Hire For Special Occasions - Wedding cars etc.</title>
    <meta name="verify-v1" content="TtB6ybKkiGf/QN1r25xnZxBUBsi/etdq4TRCrwGbsaI=" />
    <meta name="description" content="William Wells Chauffeured Cars have been supplying 'special occasion' transport for more than 25 years. We have several choices of fully licenced modern or classic vehicles for you to consider - Including our prestigious
    S Class Mercedes-Benz Long Wheel base Limousine bearing the exclusive number plate 'LUV 1'">
    <meta name="keywords" content="wedding car hire, wedding cars, hire a wedding car, my wedding, bride, groom, bridesmaids, limo hire for wedding, classy wedding cars, mercedes s class wedding car, london wedding cars, chauffeured cars, wedding services, i want to hire a wedding car">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <!-- Save for Web Styles (index.psd) -->
    <style type="text/css">
    <!--
    #Table_01 {
    position:absolute;
    left:0px;
    top:0px;
    width:1024px;
    height:768px;
    #homelogo {
    position:absolute;
    left:0px;
    top:0px;
    width:512px;
    height:255px;
    #index1-02 {
    position:absolute;
    left:512px;
    top:0px;
    width:512px;
    height:255px;
    #index1-03 {
    position:absolute;
    left:0px;
    top:255px;
    width:40px;
    height:52px;
    #index1-04 {
    position:absolute;
    left:40px;
    top:255px;
    width:18px;
    height:72px;
    #Home {
    position:absolute;
    left:58px;
    top:255px;
    width:65px;
    height:52px;
    #index1-06 {
    position:absolute;
    left:123px;
    top:255px;
    width:22px;
    height:72px;
    #Contact {
    position:absolute;
    left:145px;
    top:255px;
    width:137px;
    height:52px;
    #index1-08 {
    position:absolute;
    left:282px;
    top:255px;
    width:2px;
    height:72px;
    #index1-09 {
    position:absolute;
    left:284px;
    top:255px;
    width:740px;
    height:52px;
    #index1-10 {
    position:absolute;
    left:0px;
    top:307px;
    width:40px;
    height:20px;
    #index1-11 {
    position:absolute;
    left:58px;
    top:307px;
    width:65px;
    height:20px;
    #index1-12 {
    position:absolute;
    left:145px;
    top:307px;
    width:137px;
    height:20px;
    #index1-13 {
    position:absolute;
    left:284px;
    top:307px;
    width:740px;
    height:20px;
    #index1-14 {
    position:absolute;
    left:0px;
    top:327px;
    width:8px;
    height:230px;
    #gif {
    position:absolute;
    left:8px;
    top:327px;
    width:476px;
    height:317px;
    #index1-16 {
    position:absolute;
    left:484px;
    top:327px;
    width:540px;
    height:230px;
    #index1-17 {
    position:absolute;
    left:0px;
    top:557px;
    width:8px;
    height:176px;
    #index1-18 {
    position:absolute;
    left:484px;
    top:557px;
    width:540px;
    height:176px;
    #index1-19 {
    position:absolute;
    left:8px;
    top:644px;
    width:476px;
    height:89px;
    #designer {
    position:absolute;
    left:0px;
    top:733px;
    width:232px;
    height:35px;
    #index1-21 {
    position:absolute;
    left:232px;
    top:733px;
    width:24px;
    height:35px;
    #index1-22 {
    position:absolute;
    left:256px;
    top:733px;
    width:768px;
    height:35px;
    -->
    </style>
    <!-- End Save for Web Styles -->
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    </head>
    <body style="background-color:#FFFFFF; margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px;">
    <!-- Save for Web Slices (index.psd) -->
    <div id="Table_01">
    <div id="homelogo">
      <a href="index.html">
       <img src="images/homelogo.jpg" width="512" height="255" border="0" alt=""></a>
      </div>
    <div id="index1-02">
      <img src="images/index1_02.jpg" width="512" height="255" alt="">
    </div>
    <div id="index1-03">
      <img src="images/index1_03.jpg" width="40" height="52" alt="">
    </div>
    <div id="index1-04">
      <img src="images/index1_04.jpg" width="18" height="72" alt="">
    </div>
    <div id="Home">
      <a href="index.html">
       <img src="images/Home.jpg" width="65" height="52" border="0" alt=""></a>
      </div>
    <div id="index1-06">
      <img src="images/index1_06.jpg" width="22" height="72" alt="">
    </div>
    <div id="Contact">
      <a href="contact.html">
       <img src="images/Contact.jpg" width="137" height="52" border="0" alt=""></a>
      </div>
    <div id="index1-08">
      <img src="images/index1_08.jpg" width="2" height="72" alt="">
    </div>
    <div id="index1-09">
      <img src="images/index1_09.jpg" width="740" height="52" alt="">
    </div>
    <div id="index1-10">
      <img src="images/index1_10.jpg" width="40" height="20" alt="">
    </div>
    <div id="index1-11">
      <img src="images/index1_11.jpg" width="65" height="20" alt="">
    </div>
    <div id="index1-12">
      <img src="images/index1_12.jpg" width="137" height="20" alt="">
    </div>
    <div id="index1-13">
      <img src="images/index1_13.jpg" width="740" height="20" alt="">
    </div>
    <div id="index1-14">
      <img src="images/index1_14.jpg" width="8" height="230" alt="">
    </div>
    <div id="gif">
       <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="476" height="317">
         <param name="movie" value="homepage.swf">
         <param name="quality" value="high">
         <param name="wmode" value="opaque">
         <param name="swfversion" value="6.0.65.0">
         <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
         <param name="expressinstall" value="Scripts/expressInstall.swf">
         <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
         <!--[if !IE]>-->
         <object type="application/x-shockwave-flash" data="homepage.swf" width="476" height="317">
           <!--<![endif]-->
           <param name="quality" value="high">
           <param name="wmode" value="opaque">
           <param name="swfversion" value="6.0.65.0">
           <param name="expressinstall" value="Scripts/expressInstall.swf">
           <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
           <div>
             <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
             <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
              </div>
           <!--[if !IE]>-->
            </object>
         <!--<![endif]-->
          </object>
    </div>
    <div id="index1-16">
      <img src="images/index1_16.jpg" width="540" height="230" alt="">
    </div>
    <div id="index1-17">
      <img src="images/index1_17.jpg" width="8" height="176" alt="">
    </div>
    <div id="index1-18">
      <img src="images/index1_18.jpg" width="540" height="176" alt="">
      </div>
    <div id="index1-19">
      <img src="images/index1_19.jpg" width="476" height="89" alt="">
    </div>
    <div id="index1-21">
      <img src="images/index1_21.jpg" width="24" height="35" alt="">
    </div>
    <div id="index1-22">
      <img src="images/index1_22.jpg" width="768" height="35" alt="">
    </div>
    </div>
    <!-- End Save for Web Slices -->
    <script type="text/javascript">
    <!--
    swfobject.registerObject("FlashID");
    //-->
    </script>
    </body>
    </html>

  • Scroll Bar missing on Safari web pages and unfamiliar screen saver image

    I recently upgraded my OS X from Panther to Tiger v. 10.4.11 and upgraded to Safari 3.1.2. Now the scroll bar down the right side is missing from the open web page in Safari. Where did it go and how do I get it back?
    Also, unfamiliar images appear, something like a screen saver when I leave my computer for a
    few minutes without putting it to sleep or shutting it down. It's a black/white/gray portrait of
    a woman and as the picture moves around the screen, the image magnifies. I have no idea
    where this image came from nor how to get rid of it. Any ideas?

    Hi Busy1, and a warm welcome to the forums!
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it finishes.
    The usual reason why updates fail or mess things up, or things don't load/run, is if Permissions are not fixed before & after every update, with a reboot... you may get a partial update when the installer finds it doesn't have Permissions to change one obscure little part of the OS, leaving you with a mix of OS versions.
    Some people get away without Repairing Permissions for years, some for only days.
    If Permissions are wrong before applying an update, you could get mixed OS versions, if Directory is the slightest messed up, who knows!
    If many Permission are repaired, or any Directory errors are found, you may need to re-apply some the latest/biggest updates again, or even do an A&I if you have enough free disk space.
    The combo update for PowerPC-based Macs...
    http://www.apple.com/support/downloads/macosx10411comboupdateppc.html
    The combo update for Intel-based Macs...
    http://www.apple.com/support/downloads/macosx10411comboupdateintel.html
    Repair Permissions after re-install, then reboot again.
    If all the above do not resolve the problem, then it's time for an Archive & Install, which gives you a new OS, but can preserve all your files, pics, music, settings, etc., as long as you have plenty of free disk space...
    http://docs.info.apple.com/article.html?artnum=107120
    Might try this for Scroll Bars...
    http://lifehacker.com/5040043/add-double-scroll-arrows-to-both-ends-of-the-scrol l-bar
    when I leave my computer for a
    few minutes without putting it to sleep or shutting it down...
    Check System Preferences>Desktop & Screen Saver>Screen saver Tab for that.

  • How to center web page made in indesign cs5

    Hi everyone,
    I'm new to this forum and I hope I'll get help, because I need it
    I've made a web page in indesign cs5, exported in SWF and generated HTML.
    My swf file looks good, but my html file is not centered, web page is positioned
    in upper left corner, and I want it to be in the center.
    How can I put it there?
    Thnx very much!
    Hresta

    I know ID is not the best option for a website, but I need it that way.
    I know html/css, but my generated html file contains javascript which
    I'm not familiar with :/
    There's no div so I don't know where to put my auto margins?
    Simply on top of the html file?
    Thnx anyway!!

  • How to make web pages fit the screen width?

    Some web pages don't fit the screen width and Firefox user (me) has to scroll horizontally, which is very annoying:
    https://www.dropbox.com/s/kjyubp6f3z104ku/ScreenShot021.jpg
    Opera user, on the other hand, just clicks on the "Fit to width" button and everything looks great again:
    https://www.dropbox.com/s/hfsgl45f4d7uzgw/ScreenShot023.jpg
    Is there a way to force web page text to wrap?

    I get EXACTALY what "SantosHaHa" posted above. (Ffox 20 Win 7 64).
    Zoom doesn't help. Make things bigger or smaller, BUT THE PAGE WIDTH IS STILL CROPED!
    Have had this problem for 2 years and several versions.
    NOTHING seems to work.
    I wander why Ffox keeps changing versions so often, with so many new problems apearing, if Netscape worked fine 15 years ago!!!!

  • Cisco Contact center Web page not opening

    Hi,
    I am using Cisco Contact center version 7 in High availability mode. Web page of the primary server is not opening, but web page of secondary server is working. If I restart the primary server the web page starts working but after sometime its stop working.
    Please help me to resolve the same.
    regards,
    Neo

    What Sr do you have on the UCCX 7.0(1) version ?
    Your issue looks similar to the defect "CSCsu22366 - AppAdmin Page does not load -World Wide Publishing service stuck "
    Once you see the issue can you try the following work around
    ====
    Login to appadmin from the 2nd node, go to the Control Center page, select the broken node,
    and restart it's CRS Administration process
    =====
    Hope this helps
    Anuj

  • Why wont web pages fill the screen of the macbook, it only fills the middle

    is there something on preferences that allows me to set the web pages to take up the full space provided on the screen, ive maximised the page, but the shown contents doesnt take up the whole page, i want to change this so it does, can some one tell me how to do it

    As mentioned, it has a ot to do with the way to pages are coded. I personally hate it when a page fully expands and the lines of text stretch over the whole screen. It is much better when the text only expands to a certain width, then no further.
    As far as the windows go, it is just one of the ways that the Mac OS differs from Windows. I find it to be easier to use when apps are in a windows rather than full screen, especially when I use Expose to switch between apps.
    I have always found it interesting that Windows users generally do not use their apps in windows. I know I used to use full screen all the time in Windows, but now that I use my Mac more than the PC I find myself using windows instead of full screen.
    Not better. Not worse. Just different.

  • How can I fit a web page to the screen?

    How I can open a web page and have this fit on the screen on my mac. every program I open displays on the top the whole page but only half screen.

    Hi z,
    In the upper left hand corner of the window, click the green button. Or you can "grab" the bottom right corner of the window and drag it to whatever size you want.

  • Can i use a web page as my screen saver?

    Does anyone know of a (free) way to have my mac display a web page of my choosing as its screen saver?
    thanks for any help
    g5   Mac OS X (10.4)  

    Hi, morganshandling.
    If there's not an RSS feed for the page, you might try IdleWeb.
    Furthermore, to use Web pages with an RSS feeds in the RSS Screen Saver, they must first be bookmarked in Safari. Once you've bookmarked the RSS feeds you want, you can use one of them as the feed displayed in the RSS screen saver using the instructions in either of the following articles:
    • "Safari 2.0 Help: Displaying an RSS feed's articles as a screen saver."
    • "Mac OS X 10.4 Help: Setting up a screen saver"
    For additional information on RSS and Safari, search Safari Help (Safari > Help > Safari Help) for RSS.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • Problem with Exchange Admin Center Web page Layout.

    Hello Everyone,
    I am facing one problem in Exchange 2013 CU2, ECP web page.
    when I enter the URL of ECP the page loads properly and after entering the user credentials the ECP layout changes. To resolve the issue I have tried resetting the ECP virtual directory but no luck.
    Request you all to please suggest what can be done.
    And for reference attached is the screenshot of the Page Layout.
    Thanks in Advance.
    Hasan Sayyed.
    Regards, Hasan Sayyed

    Hi,
    It’s a display issue, not web.config file setting issue.
    Thanks,
    Simon Wu
    TechNet Community Support

  • Safari web page locking browser

    Every time I click OK (please see attached screen shot),  the **** message pops up again. I tried closing the browser, rebooting, but Safari is stuck on this page. Can anyone tell me how to fix this?

    Force Quit .
    Press command + option + esc keys together at the same time. Wait.
    When Force Quit window appears, select  Safari if not already.
    Press Force Quit button at the bottom of the window.   Wait.
    Safari will quit.
    Relaunch Safari holding the shift key down.
    Turn off Wifi. Click Wifi icon in the menu bar and select “Turn Wifi off”.
    Visit another website.
    You won’t have internet connection.
    Turn on Wifi. Click Wifi icon in the menu bar and select “Turn Wifi on”.
    Select your Network.

  • How do you open multiple web pages on same screen macbook air

    I wish to refer to multiple pages to check info on each page and copy how do you do this in safari

    To create a new tab in Safari, use command+t
    You can drag the tab out of Safari to make a stand alone webpage.

Maybe you are looking for

  • IPhone no longer compatible with Sony ICF-C1iP Dock/Speakers

    I'm a litte annoyed today. I purchased the Sony ICF-C1iP so I could use it with my first generation iPhone without the static I was getting with the iHome. However, after updating to the newest update yesterday, (August 5), the Sony ICF-C1iP no longe

  • CVP 7.0(2) web service element, is it compatible with WCF

    I'm looking for documentation on the Web Service element in CVP 7.0(2). The element specs guide for 7.0 doesn't have any thing on it only the 8.0 guide, what does this mean. Should I just build something Java? I will be using it with microsoft WCF to

  • Default acrobat xi pro send mail to default email application and remember my choice 2008R2 remote desktop server

    I have 2008R2 Remote Desktop Servers with Adobe Acrobat XI pro.  When a new user tries to send a pdf via email, it pops up a message "How would you like to send this email"  they have to pick "Default email application (Microsoft Outlook) and Remembe

  • Sort photos by time created

    I use more than one camera at events and each camera has a specific prefix on the photo numbers (ex. EW1_ and EW2_).  I'd like to be able to sort these photos by time created rather than date created so they are listed in an order of how the event ha

  • DMS link with saless order

    Hi,all Could we attach Dispatch documents out put from SAP itself in scanned form to be linked to sales order for future reference.