Help centering page

sorry guys - newbie here trying to center a page. ive been
using dreamweaver cs3 - the design tools - not straight up css
coding. but i think that because im using absolute positioning, the
page loads up aligned on the left side. how can i center the page
(with color on both sides)? basically im aiming for the center area
to automatically center in a window and run all the way from the
top to the bottom. i have included the code for the page, thanks!
i read somewhere i can put everything in a container and set
that container to the center. I have attached the HTML code below:
<!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>J</title>
<link rel="stylesheet" type="text/css" href="style.css"
/>
<style type="text/css">
<!--
#apDiv1 {
position:absolute;
left:23px;
top:111px;
width:604px;
height:30px;
z-index:1;
background-color: #000000;
.style2 {
font-family: Georgia, "Times New Roman", Times, serif;
color: #FFFFFF;
font-size: 16px;
margin-top: 5px;
margin-bottom: 5px;
padding: 0;
font-weight: bold;
#apDiv2 {
position:absolute;
left:23px;
top:141px;
width:167px;
height:669px;
z-index:2;
background-color: #4574a2;
#apDiv3 {
position:absolute;
left:197px;
top:141px;
width:430px;
height:667px;
z-index:3;
.style3 {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 10px;
color: #FFFFFF;
margin-left: 5px;
.style4 {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 12px;
font-weight: bold;
color: #FFFF00;
margin-left: 5px;
#apDiv4 {
position:absolute;
left:23px;
top:806px;
width:604px;
height:19px;
z-index:4;
margin-top: 5px;
.style11 {font-size: larger}
.style12 {
font-size: 14px;
font-family: Georgia, "Times New Roman", Times, serif;
font-weight: bold;
.style13 {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 12px;
.style16 {font-family: Georgia, "Times New Roman", Times,
serif; font-size: 12px; font-weight: bold; }
.style17 {font-family: Georgia, "Times New Roman", Times,
serif}
.style18 {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 10px;
font-style: italic;
.style19 {font-family: Georgia, "Times New Roman", Times,
serif; font-size: 10px; }
.style21 {font-size: 16px}
a:link {
color: #0033FF;
text-decoration: none;
a:visited {
text-decoration: none;
a:hover {
text-decoration: underline;
a:active {
text-decoration: none;
.style23 {font-family: Georgia, "Times New Roman", Times,
serif; font-size: 12px; color: #0000FF; }
.style24 {color: #0000FF}
.style25 {color: #000000}
-->
</style>
</head>
<body>
<div id="apDiv1">
<div align="center" class="style2">A - B - C -
D</div>
</div>
<div id="apDiv2">
<p> </p>
<p class="style4"><a
href="1.html">A</a></p>
<p class="style3"> &amp; 2</p>
<p> </p>
<p class="style4"><a
href="1.html">A</a></p>
<p class="style3">V</p>
<p class="style3"> </p>
<p class="style4">A</p>
<p class="style3">V &amp; A</p>
<p class="style3"> </p>
<p class="style4"><a
href="1.html">A</a></p>
<p class="style3">V &amp; 4</p>
<p class="style3"> </p>
<p class="style4">A</p>
<p class="style3">A</p>
<p class="style3"> </p>
<p class="style4">A</p>
<p class="style3">A</p>
<p class="style3"> </p>
<p class="style4">A</p>
<p class="style3">2 &amp; 3</p>
<p class="style3"> </p>
<p class="style4">A</p>
<p class="style3">V</p>
</div>
<div id="apDiv3">
<p> </p>
<p align="center" class="style17">1&amp;
2</p>
<p align="center"> </p>
<p align="center" class="style12"><span
class="style11">L<span class="style21">A <span
class="style11">F</span>RA
</span>S</span>A<span class="style11">
T</span>A</p>
<p align="center"> </p>
<p align="center" class="style23"><span
class="style25">[page 1] <strong>[page
2]</strong></span></p>
<p align="center"> </p>
<p align="left" class="style16">A</p>
<p align="left" class="style18">S</p>
<p align="left" class="style13"> </p>
<p align="left" class="style16">A</p>
<p align="left" class="style18">A</p>
<p align="left" class="style19"> </p>
<p align="left" class="style16">A</p>
<p align="left" class="style18"> </p>
<p align="left" class="style13"> </p>
</div>
<div id="apDiv4">
<div align="center">D</div>
</div>
<ul id="nav">
<p><img src="1.jpg" /></p>
<p> </p>
</ul>
</body>
</html>

> im using absolute positioning
You're starting on the wrong foot already. Read this -
http://apptools.com/examples/pagelayout101.php
Anyhow, change this -
</head>
to this -
<style type="text/css">
#wrapper { width:760px; margin:0 auto;position:relative; }
/* 760px will display on an 800px screen maximized browser
window without */
/* horizontal scrollbars. */
</style>
</head>
change this -
<body>
to this -
<body>
<div id="wrapper">
and this -
</body>
to this -
<!-- /wrapper -->
</div>
</body>
and see if that helps.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"newbie918273" <[email protected]> wrote in
message
news:[email protected]...
> sorry guys - newbie here trying to center a page. ive
been using
> dreamweaver
> cs3 - the design tools - not straight up css coding. but
i think that
> because
> im using absolute positioning, the page loads up aligned
on the left side.
> how
> can i center the page (with color on both sides)?
basically im aiming for
> the
> center area to automatically center in a window and run
all the way from
> the
> top to the bottom. i have included the code for the
page, thanks!
>
> i read somewhere i can put everything in a container and
set that
> container to
> the center. I have attached the HTML code below:
>
> <!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>J</title>
> <link rel="stylesheet" type="text/css"
href="style.css" />
> <style type="text/css">
> <!--
> #apDiv1 {
> position:absolute;
> left:23px;
> top:111px;
> width:604px;
> height:30px;
> z-index:1;
> background-color: #000000;
> }
> .style2 {
> font-family: Georgia, "Times New Roman", Times, serif;
> color: #FFFFFF;
> font-size: 16px;
> margin-top: 5px;
> margin-bottom: 5px;
> padding: 0;
> font-weight: bold;
> }
> #apDiv2 {
> position:absolute;
> left:23px;
> top:141px;
> width:167px;
> height:669px;
> z-index:2;
> background-color: #4574a2;
> }
> #apDiv3 {
> position:absolute;
> left:197px;
> top:141px;
> width:430px;
> height:667px;
> z-index:3;
> }
> .style3 {
> font-family: Georgia, "Times New Roman", Times, serif;
> font-size: 10px;
> color: #FFFFFF;
> margin-left: 5px;
> }
> .style4 {
> font-family: Georgia, "Times New Roman", Times, serif;
> font-size: 12px;
> font-weight: bold;
> color: #FFFF00;
> margin-left: 5px;
> }
> #apDiv4 {
> position:absolute;
> left:23px;
> top:806px;
> width:604px;
> height:19px;
> z-index:4;
> margin-top: 5px;
> }
> .style11 {font-size: larger}
> .style12 {
> font-size: 14px;
> font-family: Georgia, "Times New Roman", Times, serif;
> font-weight: bold;
> }
> .style13 {
> font-family: Georgia, "Times New Roman", Times, serif;
> font-size: 12px;
> }
> .style16 {font-family: Georgia, "Times New Roman",
Times, serif;
> font-size:
> 12px; font-weight: bold; }
> .style17 {font-family: Georgia, "Times New Roman",
Times, serif}
> .style18 {
> font-family: Georgia, "Times New Roman", Times, serif;
> font-size: 10px;
> font-style: italic;
> }
> .style19 {font-family: Georgia, "Times New Roman",
Times, serif;
> font-size:
> 10px; }
> .style21 {font-size: 16px}
> a:link {
> color: #0033FF;
> text-decoration: none;
> }
> a:visited {
> text-decoration: none;
> }
> a:hover {
> text-decoration: underline;
> }
> a:active {
> text-decoration: none;
> }
> .style23 {font-family: Georgia, "Times New Roman",
Times, serif;
> font-size:
> 12px; color: #0000FF; }
> .style24 {color: #0000FF}
> .style25 {color: #000000}
> -->
> </style>
> </head>
>
> <body>
>
> <div id="apDiv1">
> <div align="center" class="style2">A - B - C -
D</div>
>
> </div>
> <div id="apDiv2">
> <p> </p>
> <p class="style4"><a
href="1.html">A</a></p>
> <p class="style3"> &amp; 2</p>
> <p> </p>
> <p class="style4"><a
href="1.html">A</a></p>
>
> <p class="style3">V</p>
> <p class="style3"> </p>
> <p class="style4">A</p>
> <p class="style3">V &amp; A</p>
> <p class="style3"> </p>
> <p class="style4"><a
href="1.html">A</a></p>
>
> <p class="style3">V &amp; 4</p>
> <p class="style3"> </p>
> <p class="style4">A</p>
> <p class="style3">A</p>
> <p class="style3"> </p>
> <p class="style4">A</p>
>
> <p class="style3">A</p>
> <p class="style3"> </p>
> <p class="style4">A</p>
> <p class="style3">2 &amp; 3</p>
> <p class="style3"> </p>
> <p class="style4">A</p>
>
> <p class="style3">V</p>
> </div>
> <div id="apDiv3">
> <p> </p>
> <p align="center" class="style17">1&amp;
2</p>
> <p align="center"> </p>
> <p align="center" class="style12"><span
class="style11">L<span
> class="style21">A <span
class="style11">F</span>RA
</span>S</span>A<span
> class="style11"> T</span>A</p>
>
> <p align="center"> </p>
> <p align="center" class="style23"><span
class="style25">[page 1]
>
[page
> 2]</span></p>
> <p align="center"> </p>
> <p align="left" class="style16">A</p>
> <p align="left" class="style18">S</p>
> <p align="left"
class="style13"> </p>
> <p align="left" class="style16">A</p>
>
> <p align="left" class="style18">A</p>
> <p align="left"
class="style19"> </p>
> <p align="left" class="style16">A</p>
> <p align="left"
class="style18"> </p>
> <p align="left"
class="style13"> </p>
> </div>
> <div id="apDiv4">
> <div align="center">D</div>
>
> </div>
> <ul id="nav">
> <p><img src="1.jpg" /></p>
> <p> </p>
>
>
> </body>
> </html>
>
>

Similar Messages

  • Need Help Centering Page in Browser Window

    I'm designing my pages by creating a graphic framework in
    Photoshop, slicing and exporting images into css using Fireworks to
    a Dreamweaver html page. These pages look great; but they load into
    the upper left corner of the browser window
    I was taking a Dreamweaver class at the Denver Art Institute,
    that was worthless. I dropped the class after the 4th week and am
    now teaching myself. I asked the teacher how to center this kind of
    page in a browser window, so the page would behave like most
    webpages, centering as you change the width of the browser window.
    I also wanted to add a repeating pattern in a background image. She
    told me that she didn't know how, that I would have to build the
    background into my Photoshop file. So, that's what I've been doing.
    However, when people with smaller monitors change pages within a
    site the built-in background requires them to recenter the page
    manually each time.
    Is there a way to center the page and add a background image
    that is not built in? I've tried using Dreamweaver's background
    image and margins in the Page Properties; but that just pushes the
    page to the upper left and adds the background to the right and
    bottom of the page.
    Please visit:
    http://www.livingwater.la,
    http://www.renegadegraphics.biz
    and
    http://www.dentalmatchmakers.net
    for examples.
    Thanks for your help.
    Mary

    >I was taking a Dreamweaver class at the Denver Art
    Institute, that was worthless
    Yes, those classes usually are worthless because they focus
    on using the tool without giving you the proper foundation for
    understanding and managing html and css. Unfortunately, all of the
    example sites you gave you AP Divs (layers) as a primary layout
    method, which is a terrible approach. AP Divs should be used rarely
    if ever, and only when you understand how they work. When the
    visitors font is sized differently than you expected, the site
    falls apart. The correct approach is to learn web
    design/development outside of the context of a specific
    application.
    http://www.w3schools.com/html/
    is a good place to start for a basic understanding of html and css.
    And some basic layout techniques can be found here:
    http://apptools.com/examples/pagelayout101.php

  • Need Help Centering Page Content

    Hi, I have added a white box behind my main page content but the content is not centered within the box. It seems to be on the left. There are a number of different style sheets and I need to find out which style is affecting how the content is positioned.
    1. In this link below I’m not sure what is making the content go to the “left”. I need all of the thumbnails to be centered in the white area. That is what I need to find out first. What is the best way to find what is causing the thumbnails to go to the left? Is there an easy way to narrow down what is causing the thumbnails to go to the left?
    If I select “ul.work li” I notice it is set to (float: left). If I change it to (float: right) the thumbnails all move to the right. but if I set it to (float: none) the thumbnails all line up vertically. Not what I want.
    http://www.buzzfx.ca/2d_character.html
    In the homepage I also need to have all of the content centered.
    http://www.buzzfx.ca
    2. Also, how would I move the white box up to align with (touch the bottom) of the grey header?

    Thanks John, I managed to watch a good tutorial that set me straight.
    So back to the initial question. I am trying to center the content in the body but it seems to be aligned "left". Using Firebug, I think I have found the part that needs changing.
    1. At this link: http://www.buzzfx.ca/2d_character.html
    2. I hovered over the thumbnails until I found: <ul class="work fullwork clearfix">
    3. I then looked in the style and I believe it is this code below in "bold italics" that I need to edit to get the "content" to be centered but I am not sure how specifically to fix it/
    Q. Why does "margin-left: 40px;" have a strike through it?
    Q. Is "margin-left: 40px;" the reason the content is aligned "left"?
    Q. Could I not just "center" the contents instead of have it positioned from the "left"? Please explain!
    I would be very grateful if someone could look at my page in Firebug to tell what the best way is to center the body content.
    .clearfix:after {   clear: both;
       content: ".";
        display: block;
        height: 0;
        line-height: 0;
        visibility: hidden;
    ul.work {
    margin: 0 -15px;
    ul, ol {
    margin-left: 40px;
    h1, h2, h3, h4, form, table, ul, ol, p, dl, blockquote, hr {margin-bottom: 30px;
    text-align: left;
    ol, ul {
    list-style: none outside none;

  • Need help centering page

    This page is just a baby but I'd like to get this figured out
    before i get to deep into it. It's in php but only the swf menu at
    the top is the consistent thing. the menu at the top will center.
    the background and the sidebar will not. here is the code and a
    link so you can see what I'm talking about.
    www.mmdup.com/newindex.php
    <!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>Untitled Document</title>
    <style type="text/css">
    <!--
    body {
    text-align:center;
    background-image: url(images/mmdcombkg.jpg);
    background-color: #000000;
    background-repeat: no-repeat;
    margin-top: 0px;
    width:800;
    margin-left: auto;
    margin-right:auto;
    background-position: auto;
    text-align: center;
    -->
    </style></head>
    <body><?php include("menuhead.html"); ?>
    <img src="images/bannerline.png" width="1000" height="5"
    />
    <table width="191" height="533" border="0"
    cellspacing="0">
    <tr>
    <td bgcolor="#779993"> </td>
    </tr>
    </table>
    </body>
    </html>
    Thanks for any advice.

    Here try this code
    <!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>Untitled Document</title>
    <style type="text/css">
    <!--
    body {
    background-image: url(images/mmdcombkg.jpg);
    background-color: #000000;
    background-repeat: no-repeat;
    margin-top: 20px;
    #wrapper {
    width:1000px;
    margin:0 auto;
    background-color:#CCC;
    #main {
    width:1000px;
    height:500px;
    background-color:#CCC;
    -->
    </style>
    </head>
    <body>
    <div id="wrapper">
    <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8" />
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    width="1000" height="248" title="menu">
    <param name="movie" value="bannermenu.swf" />
    <param name="quality" value="high" />
    <embed src="bannermenu.swf" quality="high"
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="1000"
    height="248"></embed>
    </object>
    <div id="main">
    <p>Some text here</p>
    </div>
    </div>
    </body>
    </html>
    aka Frenchy ASP
    "vidfix55" <[email protected]> wrote in
    message
    news:[email protected]...
    > This page is just a baby but I'd like to get this
    figured out before i get
    > to
    > deep into it. It's in php but only the swf menu at the
    top is the
    > consistent
    > thing. the menu at the top will center. the background
    and the sidebar
    > will
    > not. here is the code and a link so you can see what I'm
    talking about.
    > www.mmdup.com/newindex.php
    >
    > <!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>Untitled Document</title>
    > <style type="text/css">
    > <!--
    > body {
    > text-align:center;
    > background-image: url(images/mmdcombkg.jpg);
    > background-color: #000000;
    > background-repeat: no-repeat;
    > margin-top: 0px;
    > width:800;
    > margin-left: auto;
    > margin-right:auto;
    > background-position: auto;
    > text-align: center;
    > }
    > -->
    > </style></head>
    >
    > <body><?php include("menuhead.html"); ?>
    > <img src="images/bannerline.png" width="1000"
    height="5" />
    > <table width="191" height="533" border="0"
    cellspacing="0">
    > <tr>
    > <td bgcolor="#779993"> </td>
    > </tr>
    > </table>
    >
    > </body>
    > </html>
    > Thanks for any advice.
    >
    >
    >

  • I need help Centering a div box to a background image using dreamweaver cs5.5.

    I need help Centering a div box to a background image using dreamweaver cs5.5. Everything shift left when viewing on different size monitors?  See what I mean at
    www.woodlandhospice.com

    Have you looked at your page with images disabled?
    I urge you to re-think this approach to web design because images of text are not indexed by search engines, screen readers or translators.  Given the demographic group your site is targeting, you really need to ensure maximum web accessibility for all users.
    Navigation, headings and descriptions all need to be in real text -- not images of text.
    Ken is right.  Absolute positioning is pure poison for such a simple layout.  My advice is to start over with one of the pre-built Starter Pages in DW.  Go to File > New > Blank page > HTML.  Select a layout from the 3rd column and hit CREATE button.
    Nancy O.

  • I need help exporting pages newsletters as single page PDF's or as a .jpeg for an online photo book.

    need help exporting pages newsletters as single page PDF's or as a .jpeg for an online photo book.

    No same idea: 1. Look  2. Try.
    This is in Mavericks:
    Peter

  • Help on Page

    I have created a User Guide using Framemaker.   The user guide is converted through Distiller to a pdf w/ bookmarks and Destinations. We have an Application Context properties file.   All of our users are able to go into our web application,  go to the desired, tab or site and click Help on Page, and  the user guide opens to the desired page.  It works for every user except one.  The user selects Help on Page and the user guide opens on the cover page.  I know that it has to be something related to the user's particular profile, it is probably related to Internet Explorer, but all of the settings seem to be the same.  I can't figure out why the Destinations are not working on her machine.  I have been trying to do research.  So far, nothing.  Please help. 

    The plugin being invoked is Adobe PDF.  It has some configuration options, but the options selected on the user's browsers are not different than mine.   We had a different user log onto the machine, and she was able to use the Help on Page.  However, she had trouble with it when she went back to her own machine.  This is the craziest issue that I have seen in a while, and I can't seem to find much information about it on the internet.

  • Problem centering page when printing: Lion and CS 5

    Just installed Apple's Lion. Am running Illustrator CS 5.
    Went to print a file, chose the center on page option from the new icon in Adobe's Print dialog box. The page does not print centered on the paper. It prints way off!
    I can get the page to print to fit the page, borderlessly, which is what I would like to do now; but, I have to select the option to fit in the upper left corner. I am now anticipating problems in the future when I simply want to print a page centered.
    This could be an Adobe, Apple, or Epson problem (I have an Epson Stylus Photo 1400); or a combination.
    Has anyone else experienced this? Does it happen on other apps? Is there a place to report bugs to Adobe?

    Good call! After your post, I did run Software Update, but the only thing there was an iTunes update. I do recall seeing an Epson printer update in the last day or two; but, I don't recall which of my computers called for it. In any case, on this computer, after checking Software Update and finding nothing, there is still an issue printing centered pages from Illustrator CS 5 15.0.2.

  • Help centering a box in a jpanel

    hi every1,
    I need some help centering a box in a jpanel both
    horizontally and vertically.
    which layout is the correct one?
    could you post a scrap of code please?
    thanxalot
    stefano

    With the GridBagLayout you basically can do everything. Are there more components in the panel or just this box. If it's just the box, change the Layout of the panel to GridBagLayout and the anchor of the box to center. That should beeverything to do.
    Cheers
    Jonas

  • I am working on a program book in Pages...need help moving pages around...

    I am working on a program book in Pages...need help moving pages around...

    I think word procession mode but I used a magazine template to get started and then just kept adding blank pages to finish...I have done these before without any trouble moving the pages around...so very confused.  Thanks for any assistance. 

  • Help: Centering the Web Page

    Hello everybody,
    I'm a bit new to Dreamweaver and I'm trying to create my very own website.
    However, when creating my site, I've used absolute positions for all of my apDiv-s and rollover images, so now when you open my web page, the whole site would be located at the left side of the browser.
    My problem: How do I center the positions of all the elements of the site?
    Thanks in advance,
    Emir doca

    Emir doca wrote:
    Thank you, Nadia, it helped! =)
    Terrific - good to know it worked  :-)
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    http://twitter.com/nadiap

  • Help centering web pages in all browser windows

    I have searched around and tried out a few code suggestions
    for getting web pages to be centered in all size browser windows,
    but none of them seem to work. I am starting to wonder if it is
    because I used tables to make up my pages- the background stays
    centered, but they do not. Any suggestions? If it is the fact that
    I used layers, is there a quick fix or do I have to start from
    scratch on my pages?
    Thanks!

    http://apptools.com/examples/pagelayout101.php
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "thetribalsource" <[email protected]> wrote
    in message
    news:[email protected]...
    >I have searched around and tried out a few code
    suggestions for getting web
    > pages to be centered in all size browser windows, but
    none of them seem to
    > work. I am starting to wonder if it is because I used
    tables to make up
    > my
    > pages- the background stays centered, but they do not.
    Any suggestions?
    > If it
    > is the fact that I used layers, is there a quick fix or
    do I have to start
    > from
    > scratch on my pages?
    >
    > Thanks!
    >
    > <html>
    > <head>
    > <title>contact</title>
    > <style type="text/css" media="screen">
    > <!--
    >
    > a:link {color: #CC3300}
    > a:visited {color: #CC6600}
    > a:hover {color: #CC6600}
    > a:active {color: #FFCC66}
    > -->
    > </style>
    >
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    > <script language="JavaScript">
    > <!--
    > function MM_reloadPage(init) { //reloads the window if
    Nav4 resized
    > if (init==true) with (navigator) {if
    >
    ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    > document.MM_pgW=innerWidth; document.MM_pgH=innerHeight;
    > onresize=MM_reloadPage; }}
    > else if (innerWidth!=document.MM_pgW ||
    innerHeight!=document.MM_pgH)
    > location.reload();
    > }
    > MM_reloadPage(true);
    > // -->
    > </script>
    > <style type="text/css">
    > <!--
    > #Layer13 {
    > position:absolute;
    > width:225px;
    > height:400px;
    > z-index:13;
    > left: 421px;
    > top: 137px;
    > visibility: visible;
    > }
    > .style4 {
    > font-size: 9px;
    > color: #964910;
    > font-family: Verdana, Arial, Helvetica, sans-serif;
    > }
    > .style5 {color: #FF8040}
    > .style9 {
    > font-family: Verdana, Arial, Helvetica, sans-serif;
    > font-size: 16px;
    > color: #964910;
    > }
    > .style10 {
    > font-size: 12;
    > color: #CC6600;
    > }
    > .style11 {font-size: 14px}
    > .style12 {font-size: 24px}
    > .style13 {font-size: 16px}
    > -->
    > </style>
    > </head>
    >
    > <body bgcolor="#000000" text="#000000"
    link='#990000'>
    > <div id="Layer1" style="position:absolute;
    left:658px; top:155px;
    > width:217px;
    > height:40px; z-index:1; visibility: visible;"><a
    > href="product%20belts.htm"><img src="Belts2.jpg"
    width="219" height="39"
    > border="0"></a></div>
    > <div id="Layer2" style="position:absolute;
    left:658px; top:190px;
    > width:223px;
    > height:42px; z-index:2; visibility: visible;"><a
    > href="product%20clothing.htm"><img
    src="clothing2.jpg" width="219"
    > height="39"
    > border="0"></a></div>
    > <div id="Layer3" style="position:absolute;
    left:658px; top:225px;
    > width:227px;
    > height:39px; z-index:3; visibility: visible;"><a
    > href="product%20jewelry.htm"><img
    src="jewelry2.jpg" width="219"
    > height="39"
    > border="0"></a></div>
    > <div id="Layer4" style="position:absolute;
    left:658px; top:260px;
    > width:223px;
    > height:42px; z-index:4; visibility: visible;"><a
    href="schedule.htm"><img
    > src="schedule2.jpg" width="219" height="39"
    border="0"></a></div>
    > <div id="Layer5" style="position:absolute;
    left:658px; top:295px;
    > width:226px;
    > height:40px; z-index:5; visibility: visible;"><a
    href="Conact.htm"><img
    > src="contact2.jpg" width="219" height="39"
    border="0"></a></div>
    > <div id="Layer6" style="position:absolute;
    left:658px; top:330px;
    > width:227px;
    > height:40px; z-index:6; visibility: visible;"><a
    href="Links.htm"><img
    > src="links2.jpg" width="219" height="39"
    border="0"></a></div>
    > <div id="Layer7" style="position:absolute;
    left:133px; top:575px;
    > width:113px;
    > height:23px; z-index:7; visibility: visible;"><a
    > href="product%20belts.htm"><img
    src="Beltsbottom%20copy.jpg" width="125"
    > height="25" border="0"></a></div>
    > <div id="Layer8" style="position:absolute;
    left:234.6px; top:575px;
    > width:134px; height:23px; z-index:8; visibility:
    visible;"><a
    > href="product%20clothing.htm"><img
    src="Clothingbottom%20copy.jpg"
    > width="125"
    > height="25" border="0"></a></div>
    > <div id="Layer9" style="position:absolute;
    left:370.6px; top:575px;
    > width:138px; height:23px; z-index:9; visibility:
    visible;"><a
    > href="product%20jewelry.htm"><img
    src="Jewelrybottom%20copy.jpg"
    > width="125"
    > height="25" border="0"></a></div>
    > <div id="Layer10" style="position:absolute;
    left:495.8px; top:575px;
    > width:139px; height:27px; z-index:10; visibility:
    visible;"><a
    > href="schedule.htm"><img
    src="Schedulebottom%20copy.jpg" width="125"
    > height="25" border="0"></a></div>
    > <div id="Layer11" style="position:absolute;
    left:624.4px; top:575px;
    > width:131px; height:26px; z-index:11; visibility:
    visible;"><a
    > href="Conact.htm"><img
    src="Conactbottom%20copy.jpg" width="125"
    > height="25"
    > border="0"></a></div>
    > <div id="Layer12" style="position:absolute;
    left:759px; top:575px;
    > width:110px; height:24px; z-index:12; visibility:
    visible;"><a
    > href="Links.htm"><img src="Linksbottom%20copy.jpg"
    width="125" height="25"
    > border="0"></a></div>
    > <div id="Layer13">
    > <p> </p>
    > <p><span class="style4"><span
    class="style12">The Tribal
    > Source</span><br>
    > <span class="style11">Karin Hein-Parks and Melanie
    > Wood</span></span></p>
    >
    > <p class="style13"><a
    >
    href="mailto:[email protected]">[email protected]</a></p>
    >
    > <p class="style5"><span
    class="style9">Please contact us for any
    > information
    > regarding in-stock items and special orders. We will be
    happy to email you
    > photos of whatever we currently have in stock. We are
    also very happy to
    > take
    > on special orders if our schedules
    permit!</span><br>
    > </p>
    > </div>
    > <div align="center"><img
    src="page%204-%20links%20copy.jpg" width="775"
    > height="605">
    > </div>
    > </body>
    > </html>
    >

  • Need help centering DIV in CSS

    Hi- I had a "coming to jesus" last night regarding my website.  I've been out of the professional web design world for about 7 years.  I'm getting back in it.  I used to design in tables and after some reading, I know I need to design in DIV.  My problem is I do not know how to get my main section centered on the page.
    I did a sketch up of what I want in layout terms.
    Any suggestions on how to center a 980px div?
    Here's a link to my current page with table layout.
    http://www.prodentite.com/patient_edu/index.htm
    Any help is appreciated.

    This is a very common question, so an article has been published in the Dreamweaver FAQ
    Centering a page:
    http://forums.adobe.com/thread/454036
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    http://twitter.com/nadiap

  • Dreamweaver CS4 help centering please

    Hi everyone,
    I'm trying to center my website using Dreamweaver. When I preview my site in Dreamweaver it looks good and centered. When I upload the site to Godaddy my site left justifies. Can anyone please help me. I'm a novice and I'm trying to create a page for a small business. Here is the coding for the site. I've tried several help tips online and nothing seems to work. Any help will be highly appreciated. Thanks for your time! Also, I think it has something to do with the CSS part. I'm also using a CSS style sheet.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Loan Modification Reviews For You | Get a Loan Modification Today!</title>
    <link href="style.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    .header .header_center p {
    font-size: 16px;
    text-align: left;
    .header .woman p {
    color: #75B4EA;
    font-weight: bold;
    font-size: 36px;
    font-family: helvitca;
    .content p {
    text-align: center;
    color: #C1D3FB;
    .content p {
    color: #000;
    .content p {
    font-size: 12px;
    text-align: left;
    .a {
    font-size: 24px;
    .content a {
    color: #545454;
    a2 {
    color: #545454;
    .a3 {
    color: #000;
    font-size: 24px;
    text-align: center;
    p {
    text-align: left;
    font-size: 11px;
    .content .a3 .a3 {
    text-align: center;
    .content .a3 .a3 {
    text-align: center;
    .a5 {
    font-size: 36px;
    .input br {
    text-align: center;
    .a15 {
    text-align: center;
    a:link {
    color: #FF3;
    a:visited {
    color: #033;
    body {
    margin-left: auto;
    margin-right: auto;
    text-align:center;
    #contents
      margin-top: 10px;
      margin-bottom: 10px;
      margin-right:auto;
      margin-left:auto;
      width: 766px;
      padding: 10px;
      background-color: #FFF;
      color: #000;
      text-align: center;
      body {
    background-color:#fff;
    width:766px;
    text-align:center;
    margin:0 auto;
    position:relative;
    font-size: 24px;
    #contents
      margin-top: 5px;
      margin-bottom: 10px;
      margin-right:0;
      margin-left:0;
      width: 766px;
      padding: 10px;
      background-color: #FFF;
      color: #000;
      text-align: center;
    margin:0;
    padding:0;
    font-size:11px;
    font-family:Tahoma,sans-serif;
    color:#545454;
    img {
    border:0;
    text-align: center;
    a {
    text-decoration:none;
    a:hover {
    text-decoration:underline;
    text-align: left;
    color: #D6D6D6;
    .clearing {
    clear:both;
    height:0px;
    width:0px;
    font-size:0px;
    .float_l {
    float:left;
    .header {
    height:290px;
    background:url('images/border_top.jpg') repeat-x;
    .woman {
    background:url('images/woman_top.gif') top right no-repeat;
    width:766px;
    height:119px;
    color: #FFEA00;
    font-size: 24px;
    .woman img {
    margin:45px 0 0 48px;
    .header_center {
    background:url('images/woman_center.jpg') no-repeat;
    height:114px;
    text-align: left;
    .header_center p {
    width:505px;
    font-size:25px;
    font-family:Helvetica;
    color:#fff;
    text-align:center;
    padding-top:20px;
    .header_center span {
    font-family:Verdana;
    font-weight:bold;
    color:#215489;
    vertical-align:top;
    padding-left:55px;
    .header_center a {
    font-size:24px;
    font-family:Helvetica;
    font-weight:bold;
    color:#ffea00;
    vertical-align:top;
    .navigation {
    background:url('images/navigation.jpg') no-repeat;
    height:57px;
    .navigation_links {
    color:#fff;
    padding:15px 0 0 70px;
    text-align: center;
    .navigation_links img {
    margin: 0 6px;
    .content {
    background:url('images/border.gif') repeat-y;
    margin-top:15px;
    border:1px solid #fff;
    color: #4179B6;
    font-size: 24px;
    text-align: right;
    .colum_left {
    width:214px;
    margin-left:20px;
    html>body .colum_left {
    margin-left:50px;
    .news {
    width:200px;
    height:auto;
    margin:0 0 15px 5px;
    .news_title {
    background-color:#f2f2f2;
    color:#437fbe;
    margin:5px 0;
    padding:1px 0 0 10px;
    .news h1 {
    margin-left:10px;
    .news p {
    margin-bottom:5px;
    margin-left:10px;
    .news span {
    background:url('images/link.gif') no-repeat;
    background-position:right;
    padding-right:25px;
    margin-left:10px;
    .news a {
    color:#8f969c;
    font-weight:bold;
    font-size:10px;
    .search {
    width:190px;
    background-color:#f2f2f2;
    color:#4b4b4b;
    padding:10px 0 0 10px;
    margin:5px 0 0 5px;
    .search span {
    background:url('images/search.gif') no-repeat;
    background-position:left;
    padding-left:10px;
    margin-left:10px;
    .input {
    margin:5px 0 15px 0;
    .ok {
    margin-top:6px;
    vertical-align:top !important;
    vertical-align:middle;
    .colum_right {
    width:400px;
    margin-left:40px;
    .top {
    margin-bottom:17px;
    .top img {
    margin:0 10px 5px 0;
    .top p {
    margin-bottom:5px
    .top span {
    background:url('images/link.gif') no-repeat;
    background-position:right;
    padding-right:25px;
    .top a {
    color:#8f969c;
    font-weight:bold;
    font-size:10px;
    .bottom img {
    margin-bottom:5px;
    .column {
    width:200px;
    .column img {
    margin:0 10px 5px 0;
    .column p {
    margin-bottom:8px
    .column span {
    background:url('images/link_icon.gif') no-repeat;
    background-position:left;
    padding-left:10px;
    .column a {
    color:#87ad1f;
    text-decoration:underline;
    .column a:hover {
    text-decoration:none;
    .spacer {
    clear:left;
    height:1px;
    .footer {
    background:url('images/footer_background.gif') no-repeat;
    height:63px;
    margin-top:15px;
    color:#fff;
    text-align:right;
    padding:20px 40px 0 0;
    .footer a {
    color:#fff;
    .bbb {
    text-align: center;
    .header .header_center pppp {
    text-align: left;
    .a5 br {
    font-size: 11px;
    -->
    </style>
    </head>
    <body>
    <div id="container">
    <div class = "header">
      <div class = "woman">
        <p> </p>
        <p>LoanModificationReviews.com</p>
      </div>
      <div class = "header_center">
        <p>GET THE TOOLS YOU NEED TO MODIFY YOUR MORTGAGE<br />
           </p>
       <p><a href = "#">Loan Modification Tool Reviews For You</a> </p>
        </div>
      <div class = "navigation">
       <div class = "navigation_links"></div>
      </div>
    </div>
    <p> </p>
    <p> </p>
    <h1 align="center" class="a5"> Loan Modifications are  Easy </h1>
        <h1 align="center" class="a5">Loan Modification  Reviews For You</h1>
        <p align="center"> </p>
    <p><strong>Do not be fooled</strong> by any guru, system or web site that tells   you that you can not do Loan Modiciationst . Making your home affordable requires agent hard work and the right   tools you need to modify your mortgage.<br />
          <br />
          We've reviewed all of the popular Loan Modification Kits out there and we're going to tell you <strong>which are worth the money   and which to avoid! </strong><br />
          <br />
    <strong>save you time,   money </strong>and help you generate Loan Modifications and <strong>succeed</strong> at making your home more affordable</p>
        <p> </p>
    <table cellspacing="0" cellpadding="0">
          <tr>
            <td><a href="http://e2429jtwou38ok2j6aer5gkc22.hop.clickbank.net/"><img src="images/160minloanmodfixed.jpg" alt="" width="300" height="252" /></a></td>
            <td><img src="images/spacer.gif" alt="" width="10" height="10" /></td>
            <td valign="top"><table cellspacing="0" cellpadding="0" width="100%" border="0">
              <tbody>
                <tr>
                  <td><img src="images/t1.jpg" alt="" width="527" height="33" /></td>
                </tr>
                <tr>
                  <td background="images/t2.jpg"><table cellspacing="0" cellpadding="0" width="90%" border="0">
                    <tbody>
                      <tr>
                        <td><div>  
                          <div class="a3"><img src="images/title_customer_rating.gif" alt="" width="111" height="13" /><img src="images/check.gif" alt="" width="18" height="17" hspace="5" /><img height="17" alt="" hspace="0" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /></div>
                          <p><strong> Company:</strong> 60-Minute Loan Modification</p>
                          <p><strong>Website:</strong><a href="http://e2429jtwou38ok2j6aer5gkc22.hop.clickbank.net/"> http://www.60-minuteloanmod.com</a><br />
                            <strong>Rank:</strong> #1<br />
                            <strong>  Cost:</strong> $87.95<br />
                            <strong>Guarantee:</strong> 100% Money Back up to 60 Days<br />
                            <strong><img src="images/spacer.gif" alt="" width="1" height="1" />Description: </strong><br />
                          </p>
    </div></td>
                      </tr>
                    </tbody>
                  </table></td>
                </tr>
                <tr>
                  <td><img src="images/t3.jpg" alt="" width="527" height="33" /></td>
                </tr>
              </tbody>
            </table></td>
          </tr>
          <tr>
            <td colspan="3"><img height="10" alt="" src="images/spacer.gif" width="10" /></td>
          </tr>
        </table>
    <p> </p>
    <table cellspacing="0" cellpadding="0">
          <tr>
            <td><img src="images/4thediymortgagemodkitfixed.jpg" alt="" width="300" height="252" /></td>
            <td><img src="images/spacer.gif" alt="" width="10" height="10" /></td>
            <td valign="top"><table cellspacing="0" cellpadding="0" width="100%" border="0">
              <tbody>
                <tr>
                  <td><img src="images/t1.jpg" alt="" width="527" height="33" /></td>
                </tr>
                <tr>
                  <td background="images/t2.jpg"><table cellspacing="0" cellpadding="0" width="92%" border="0">
                    <tbody>
                      <tr>
                        <td><div>
                          <div class="input"><img src="images/title_customer_rating.gif" alt="" width="111" height="13" /><img src="images/check.gif" alt="" width="18" height="17" hspace="5" /><img height="17" alt="" hspace="0" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /></div>
                          <p><strong> Company:</strong></p>
                          <p class="input"><strong>Website:</strong><br />
                            <strong>Rank:</strong> #2<br />
                            <strong>Cost:</strong><br />
                            <strong>Guarantee:</strong><br />
                            <strong>Description: </strong>sdafsdfsdf asdf sadfsd fasdf asdf asdf asdf asd fsdaf asdf asd fasd fasd fasd fas df asdf asdf asd fasd f asdf dasf asd fasd fa sdf asdf asd fsad fasd fa sdf asd fasd f asdf asd fasd fasd f asdf asd fasd f asdf asd fasd fasd f asdf asd fasd f asdf daf das fsda fda fas df asdf asdf asd fad sfads f asdf ads fasd fasd fdas f <br />
                        </p>
                        </div></td>
                      </tr>
                    </tbody>
                  </table></td>
                </tr>
                <tr>
                  <td><img src="images/t3.jpg" alt="" width="527" height="33" /></td>
                </tr>
              </tbody>
            </table></td>
          </tr>
          <tr>
            <td colspan="3"><img height="10" alt="" src="images/spacer.gif" width="10" /></td>
          </tr>
        </table>
    <p> </p>
    <table cellspacing="0" cellpadding="0">
          <tr>
            <td><img src="images/5loanmodguidebookfixed.jpg" alt="" width="300" height="252" /></td>
            <td><img src="images/spacer.gif" alt="" width="10" height="10" /></td>
            <td valign="top"><table cellspacing="0" cellpadding="0" width="100%" border="0">
              <tbody>
                <tr>
                  <td><img src="images/t1.jpg" alt="" width="527" height="33" /></td>
                </tr>
                <tr>
                  <td background="images/t2.jpg"><table cellspacing="0" cellpadding="0" width="90%" border="0">
                    <tbody>
                      <tr>
                        <td><div>
                          <div><img src="images/title_customer_rating.gif" alt="" width="111" height="13" /><img src="images/check.gif" alt="" width="18" height="17" hspace="5" /><img height="17" alt="" hspace="0" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /></div>
                          <p><strong> Company:</strong> <a href="http://1.reosecret.hop.clickbank.net/?tid=REO4AGENT" target="_blank">1000+   Asset Management - ListingREO.com</a></p>
                          <p><strong>Website:</strong> <a href="http://1.reosecret.hop.clickbank.net/?tid=REO4AGENT" target="_blank">www.ListingREO.com</a><br />
                            <strong>Rank:</strong> #1<br />
                            <strong>Cost:</strong> $99.00<br />
                            <strong>Guarantee:</strong> 60 Day Money   Back<br />
                            <strong>Description: </strong>Absolutely, hands down, the best list of   Banks, Lenders and Asset managers we have found! With over 1,000 contacts on   this list, <strong>ANYONE</strong> can start listing REOs and processing BPOs!   While most lists include main contact numbers and general websites, this list   contains individual contact information for the key decision makers at each   bank. This is the critical information you need to succeed as a BPO and REO   agent! In addition, this list provides a monthly update to ensure your REO list   is fresh and up to date.</p>
                          <br />
                        </div></td>
                      </tr>
                    </tbody>
                  </table></td>
                </tr>
                <tr>
                  <td><img src="images/t3.jpg" alt="" width="527" height="33" /></td>
                </tr>
              </tbody>
            </table></td>
          </tr>
          <tr>
            <td colspan="3"><img height="10" alt="" src="images/spacer.gif" width="10" /></td>
          </tr>
        </table>
    <br />
    <table cellspacing="0" cellpadding="0">
          <tr>
            <td><img src="images/2doityourselfloanmodfixed.jpg" alt="" width="300" height="252" /></td>
            <td><img src="images/spacer.gif" alt="" width="10" height="10" /></td>
            <td valign="top"><table cellspacing="0" cellpadding="0" width="100%" border="0">
              <tbody>
                <tr>
                  <td><img src="images/t1.jpg" alt="" width="527" height="33" /></td>
                </tr>
                <tr>
                  <td background="images/t2.jpg"><table cellspacing="0" cellpadding="0" width="90%" border="0">
                    <tbody>
                      <tr>
                        <td><div>
                          <div><img src="images/title_customer_rating.gif" alt="" width="111" height="13" /><img src="images/check.gif" alt="" width="18" height="17" hspace="5" /><img height="17" alt="" hspace="0" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /></div>
                          <p><strong> Company:</strong> <a href="http://1.reosecret.hop.clickbank.net/?tid=REO4AGENT" target="_blank">1000+   Asset Management - ListingREO.com</a></p>
                          <p><strong>Website:</strong> <a href="http://1.reosecret.hop.clickbank.net/?tid=REO4AGENT" target="_blank">www.ListingREO.com</a><br />
                            <strong>Rank:</strong> #1<br />
                            <strong>Cost:</strong> $99.00<br />
                            <strong>Guarantee:</strong> 60 Day Money   Back<br />
                            <strong>Description: </strong>Absolutely, hands down, the best list of   Banks, Lenders and Asset managers we have found! With over 1,000 contacts on   this list, <strong>ANYONE</strong> can start listing REOs and processing BPOs!   While most lists include main contact numbers and general websites, this list   contains individual contact information for the key decision makers at each   bank. This is the critical information you need to succeed as a BPO and REO   agent! In addition, this list provides a monthly update to ensure your REO list   is fresh and up to date.</p>
                          <br />
                        </div></td>
                      </tr>
                    </tbody>
                  </table></td>
                </tr>
                <tr>
                  <td><img src="images/t3.jpg" alt="" width="527" height="33" /></td>
                </tr>
              </tbody>
            </table></td>
      </tr>
          <tr>
            <td colspan="3"><img height="10" alt="" src="images/spacer.gif" width="10" /></td>
          </tr>
    </table>
    <p><br />
      </p>
        <table cellspacing="0" cellpadding="0">
          <tr>
            <td><img src="images/3theloandmodkitfixed.jpg" alt="" width="300" height="252" /></td>
            <td><img src="images/spacer.gif" alt="" width="10" height="10" /></td>
            <td valign="top"><table cellspacing="0" cellpadding="0" width="100%" border="0">
              <tbody>
                <tr>
                  <td><img src="images/t1.jpg" alt="" width="527" height="33" /></td>
                </tr>
                <tr>
                  <td background="images/t2.jpg"><table cellspacing="0" cellpadding="0" width="90%" border="0">
                    <tbody>
                      <tr>
                        <td><div>
                          <div><img src="images/title_customer_rating.gif" alt="" width="111" height="13" /><img src="images/check.gif" alt="" width="18" height="17" hspace="5" /><img height="17" alt="" hspace="0" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /></div>
                          <p><strong> Company:</strong> <a href="http://1.reosecret.hop.clickbank.net/?tid=REO4AGENT" target="_blank">1000+   Asset Management - ListingREO.com</a></p>
                          <p><strong>Website:</strong> <a href="http://1.reosecret.hop.clickbank.net/?tid=REO4AGENT" target="_blank">www.ListingREO.com</a><br />
                            <strong>Rank:</strong> #1<br />
                            <strong>Cost:</strong> $99.00<br />
                            <strong>Guarantee:</strong> 60 Day Money   Back<br />
                            <strong>Description: </strong>Absolutely, hands down, the best list of   Banks, Lenders and Asset managers we have found! With over 1,000 contacts on   this list, <strong>ANYONE</strong> can start listing REOs and processing BPOs!   While most lists include main contact numbers and general websites, this list   contains individual contact information for the key decision makers at each   bank. This is the critical information you need to succeed as a BPO and REO   agent! In addition, this list provides a monthly update to ensure your REO list   is fresh and up to date.</p>
                          <br />
                        </div></td>
                      </tr>
                    </tbody>
                  </table></td>
                </tr>
                <tr>
                  <td><img src="images/t3.jpg" alt="" width="527" height="33" /></td>
                </tr>
              </tbody>
            </table></td>
          </tr>
          <tr>
            <td colspan="3"><img height="10" alt="" src="images/spacer.gif" width="10" /></td>
          </tr>
    </table>
    <p>  </p>
        <p align="center">  </p>
        <div class = "footer"> Copyright 2007 &copy; LoanModificationsReviews. All rights reserved<br />
          <a href = "#">Term of Use</a> / <a href = "#">Privacy Policy</a><br />
        </div>
        <p class="a3"> </p>
         </div>
    </body>
    </html>
    <script language='javascript' src='https://a12.alphagodaddy.com/hosting_ads/gd01.js'></script>

    Hi Nadia,
    I followed your instructions but it is still left justifying the site. The site link is http://www.seanwooduf.com
    I'll paste the html code again. Thank you for you fast response!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Loan Modification Reviews For You | Get a Loan Modification Today!</title>
    <link href="style.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    .header .header_center p {
    font-size: 16px;
    text-align: left;
    .header .woman p {
    color: #75B4EA;
    font-weight: bold;
    font-size: 24px;
    font-family: helvitca;
    .content p {
    text-align: center;
    color: #C1D3FB;
    .content p {
    color: #000;
    .content p {
    font-size: 12px;
    text-align: left;
    .a {
    font-size: 24px;
    .content a {
    color: #545454;
    a2 {
    color: #545454;
    .a3 {
    color: #000;
    font-size: 24px;
    text-align: center;
    p {
    text-align: left;
    font-size: 11px;
    .content .a3 .a3 {
    text-align: center;
    .content .a3 .a3 {
    text-align: center;
    .a5 {
    font-size: 36px;
    .input br {
    text-align: center;
    .a15 {
    text-align: center;
    a:link {
    color: #FF3;
    a:visited {
    color: #033;
    font-size: 18px;
    body {
    text-align:center;
    background-color: white;
    #contents
      margin-top: 10px;
      margin-bottom: 10px;
      margin-right:auto;
      margin-left:auto;
      width: 766px;
      padding: 10px;
      background-color: #FFF;
      color: #000;
      text-align: center;
    #container {
        width: 766px; 
        margin: 0 auto;
    -->
    </style>
    </head>
    <body>
    <div id="container">
    <div class = "header">
      <div class = "woman">
        <p> </p>
        <p>HomeLoanModificationReviews.com</p>
      </div>
      <div class = "header_center">
        <p>GET THE TOOLS YOU NEED TO MODIFY YOUR MORTGAGE<br />
           </p>
       <p><a href = "#">Loan Modification Tool Reviews For You</a> </p>
        </div>
      <div class = "navigation">
       <div class = "navigation_links"></div>
      </div>
    </div>
    <p> </p>
    <p> </p>
    <h1 align="center" class="a5"> Loan Modifications are  Easy </h1>
        <h1 align="center" class="a5">Loan Modification  Reviews For You</h1>
        <p align="center"> </p>
    <p><strong>Do not be fooled</strong> by any guru, system or web site that tells   you that you can not do Loan Modiciationst . Making your home affordable requires agent hard work and the right   tools you need to modify your mortgage.<br />
          <br />
          We've reviewed all of the popular Loan Modification Kits out there and we're going to tell you <strong>which are worth the money   and which to avoid! </strong><br />
          <br />
    <strong>save you time,   money </strong>and help you generate Loan Modifications and <strong>succeed</strong> at making your home more affordable</p>
        <p> </p>
    <table cellspacing="0" cellpadding="0">
          <tr>
            <td><a href="http://e2429jtwou38ok2j6aer5gkc22.hop.clickbank.net/"><img src="images/160minloanmodfixed.jpg" alt="" width="300" height="252" /></a></td>
            <td><img src="images/spacer.gif" alt="" width="10" height="10" /></td>
            <td valign="top"><table cellspacing="0" cellpadding="0" width="100%" border="0">
              <tbody>
                <tr>
                  <td><img src="images/t1.jpg" alt="" width="527" height="33" /></td>
                </tr>
                <tr>
                  <td background="images/t2.jpg"><table cellspacing="0" cellpadding="0" width="90%" border="0">
                    <tbody>
                      <tr>
                        <td><div>  
                          <div class="a3"><img src="images/title_customer_rating.gif" alt="" width="111" height="13" /><img src="images/check.gif" alt="" width="18" height="17" hspace="5" /><img height="17" alt="" hspace="0" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /></div>
                          <p><strong> Company:</strong> 60-Minute Loan Modification</p>
                          <p><strong>Website:</strong><a href="http://e2429jtwou38ok2j6aer5gkc22.hop.clickbank.net/"> http://www.60-minuteloanmod.com</a><br />
                            <strong>Rank:</strong> #1<br />
                            <strong>  Cost:</strong> $87.95<br />
                            <strong>Guarantee:</strong> 100% Money Back up to 60 Days<br />
                            <strong><img src="images/spacer.gif" alt="" width="1" height="1" />Description: </strong><br />
                          </p>
    </div></td>
                      </tr>
                    </tbody>
                  </table></td>
                </tr>
                <tr>
                  <td><img src="images/t3.jpg" alt="" width="527" height="33" /></td>
                </tr>
              </tbody>
            </table></td>
          </tr>
          <tr>
            <td colspan="3"><img height="10" alt="" src="images/spacer.gif" width="10" /></td>
          </tr>
        </table>
    <p> </p>
    <table cellspacing="0" cellpadding="0">
          <tr>
            <td><img src="images/4thediymortgagemodkitfixed.jpg" alt="" width="300" height="252" /></td>
            <td><img src="images/spacer.gif" alt="" width="10" height="10" /></td>
            <td valign="top"><table cellspacing="0" cellpadding="0" width="100%" border="0">
              <tbody>
                <tr>
                  <td><img src="images/t1.jpg" alt="" width="527" height="33" /></td>
                </tr>
                <tr>
                  <td background="images/t2.jpg"><table cellspacing="0" cellpadding="0" width="92%" border="0">
                    <tbody>
                      <tr>
                        <td><div>
                          <div class="input"><img src="images/title_customer_rating.gif" alt="" width="111" height="13" /><img src="images/check.gif" alt="" width="18" height="17" hspace="5" /><img height="17" alt="" hspace="0" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /></div>
                          <p><strong> Company:</strong></p>
                          <p class="input"><strong>Website:</strong><br />
                            <strong>Rank:</strong> #2<br />
                            <strong>Cost:</strong><br />
                            <strong>Guarantee:</strong><br />
                            <strong>Description: </strong>sdafsdfsdf asdf sadfsd fasdf asdf asdf asdf asd fsdaf asdf asd fasd fasd fasd fas df asdf asdf asd fasd f asdf dasf asd fasd fa sdf asdf asd fsad fasd fa sdf asd fasd f asdf asd fasd fasd f asdf asd fasd f asdf asd fasd fasd f asdf asd fasd f asdf daf das fsda fda fas df asdf asdf asd fad sfads f asdf ads fasd fasd fdas f <br />
                        </p>
                        </div></td>
                      </tr>
                    </tbody>
                  </table></td>
                </tr>
                <tr>
                  <td><img src="images/t3.jpg" alt="" width="527" height="33" /></td>
                </tr>
              </tbody>
            </table></td>
          </tr>
          <tr>
            <td colspan="3"><img height="10" alt="" src="images/spacer.gif" width="10" /></td>
          </tr>
        </table>
    <p> </p>
    <table cellspacing="0" cellpadding="0">
          <tr>
            <td><img src="images/5loanmodguidebookfixed.jpg" alt="" width="300" height="252" /></td>
            <td><img src="images/spacer.gif" alt="" width="10" height="10" /></td>
            <td valign="top"><table cellspacing="0" cellpadding="0" width="100%" border="0">
              <tbody>
                <tr>
                  <td><img src="images/t1.jpg" alt="" width="527" height="33" /></td>
                </tr>
                <tr>
                  <td background="images/t2.jpg"><table cellspacing="0" cellpadding="0" width="90%" border="0">
                    <tbody>
                      <tr>
                        <td><div>
                          <div><img src="images/title_customer_rating.gif" alt="" width="111" height="13" /><img src="images/check.gif" alt="" width="18" height="17" hspace="5" /><img height="17" alt="" hspace="0" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /></div>
                          <p><strong> Company:</strong> <a href="http://1.reosecret.hop.clickbank.net/?tid=REO4AGENT" target="_blank">1000+   Asset Management - ListingREO.com</a></p>
                          <p><strong>Website:</strong> <a href="http://1.reosecret.hop.clickbank.net/?tid=REO4AGENT" target="_blank">www.ListingREO.com</a><br />
                            <strong>Rank:</strong> #1<br />
                            <strong>Cost:</strong> $99.00<br />
                            <strong>Guarantee:</strong> 60 Day Money   Back<br />
                            <strong>Description: </strong>Absolutely, hands down, the best list of   Banks, Lenders and Asset managers we have found! With over 1,000 contacts on   this list, <strong>ANYONE</strong> can start listing REOs and processing BPOs!   While most lists include main contact numbers and general websites, this list   contains individual contact information for the key decision makers at each   bank. This is the critical information you need to succeed as a BPO and REO   agent! In addition, this list provides a monthly update to ensure your REO list   is fresh and up to date.</p>
                          <br />
                        </div></td>
                      </tr>
                    </tbody>
                  </table></td>
                </tr>
                <tr>
                  <td><img src="images/t3.jpg" alt="" width="527" height="33" /></td>
                </tr>
              </tbody>
            </table></td>
          </tr>
          <tr>
            <td colspan="3"><img height="10" alt="" src="images/spacer.gif" width="10" /></td>
          </tr>
        </table>
    <br />
    <table cellspacing="0" cellpadding="0">
          <tr>
            <td><img src="images/2doityourselfloanmodfixed.jpg" alt="" width="300" height="252" /></td>
            <td><img src="images/spacer.gif" alt="" width="10" height="10" /></td>
            <td valign="top"><table cellspacing="0" cellpadding="0" width="100%" border="0">
              <tbody>
                <tr>
                  <td><img src="images/t1.jpg" alt="" width="527" height="33" /></td>
                </tr>
                <tr>
                  <td background="images/t2.jpg"><table cellspacing="0" cellpadding="0" width="90%" border="0">
                    <tbody>
                      <tr>
                        <td><div>
                          <div><img src="images/title_customer_rating.gif" alt="" width="111" height="13" /><img src="images/check.gif" alt="" width="18" height="17" hspace="5" /><img height="17" alt="" hspace="0" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /></div>
                          <p><strong> Company:</strong> <a href="http://1.reosecret.hop.clickbank.net/?tid=REO4AGENT" target="_blank">1000+   Asset Management - ListingREO.com</a></p>
                          <p><strong>Website:</strong> <a href="http://1.reosecret.hop.clickbank.net/?tid=REO4AGENT" target="_blank">www.ListingREO.com</a><br />
                            <strong>Rank:</strong> #1<br />
                            <strong>Cost:</strong> $99.00<br />
                            <strong>Guarantee:</strong> 60 Day Money   Back<br />
                            <strong>Description: </strong>Absolutely, hands down, the best list of   Banks, Lenders and Asset managers we have found! With over 1,000 contacts on   this list, <strong>ANYONE</strong> can start listing REOs and processing BPOs!   While most lists include main contact numbers and general websites, this list   contains individual contact information for the key decision makers at each   bank. This is the critical information you need to succeed as a BPO and REO   agent! In addition, this list provides a monthly update to ensure your REO list   is fresh and up to date.</p>
                          <br />
                        </div></td>
                      </tr>
                    </tbody>
                  </table></td>
                </tr>
                <tr>
                  <td><img src="images/t3.jpg" alt="" width="527" height="33" /></td>
                </tr>
              </tbody>
            </table></td>
      </tr>
          <tr>
            <td colspan="3"><img height="10" alt="" src="images/spacer.gif" width="10" /></td>
          </tr>
    </table>
    <p><br />
      </p>
        <table cellspacing="0" cellpadding="0">
          <tr>
            <td><img src="images/3theloandmodkitfixed.jpg" alt="" width="300" height="252" /></td>
            <td><img src="images/spacer.gif" alt="" width="10" height="10" /></td>
            <td valign="top"><table cellspacing="0" cellpadding="0" width="100%" border="0">
              <tbody>
                <tr>
                  <td><img src="images/t1.jpg" alt="" width="527" height="33" /></td>
                </tr>
                <tr>
                  <td background="images/t2.jpg"><table cellspacing="0" cellpadding="0" width="90%" border="0">
                    <tbody>
                      <tr>
                        <td><div>
                          <div><img src="images/title_customer_rating.gif" alt="" width="111" height="13" /><img src="images/check.gif" alt="" width="18" height="17" hspace="5" /><img height="17" alt="" hspace="0" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /><img height="17" alt="" hspace="5" src="images/check.gif" width="18" /></div>
                          <p><strong> Company:</strong> <a href="http://1.reosecret.hop.clickbank.net/?tid=REO4AGENT" target="_blank">1000+   Asset Management - ListingREO.com</a></p>
                          <p><strong>Website:</strong> <a href="http://1.reosecret.hop.clickbank.net/?tid=REO4AGENT" target="_blank">www.ListingREO.com</a><br />
                            <strong>Rank:</strong> #1<br />
                            <strong>Cost:</strong> $99.00<br />
                            <strong>Guarantee:</strong> 60 Day Money   Back<br />
                            <strong>Description: </strong>Absolutely, hands down, the best list of   Banks, Lenders and Asset managers we have found! With over 1,000 contacts on   this list, <strong>ANYONE</strong> can start listing REOs and processing BPOs!   While most lists include main contact numbers and general websites, this list   contains individual contact information for the key decision makers at each   bank. This is the critical information you need to succeed as a BPO and REO   agent! In addition, this list provides a monthly update to ensure your REO list   is fresh and up to date.</p>
                          <br />
                        </div></td>
                      </tr>
                    </tbody>
                  </table></td>
                </tr>
                <tr>
                  <td><img src="images/t3.jpg" alt="" width="527" height="33" /></td>
                </tr>
              </tbody>
            </table></td>
          </tr>
          <tr>
            <td colspan="3"><img height="10" alt="" src="images/spacer.gif" width="10" /></td>
          </tr>
    </table>
    <p>  </p>
        <p align="center">  </p>
        <div class = "footer"> Copyright 2009 &copy; Home LoanModificationsReviews. All rights reserved<br />
          <a href = "#">Term of Use</a> / <a href = "#">Privacy Policy</a><br />
        </div>
        <p class="a3"> </p>
         </div>
    </body>
    </html>
    <script language='javascript' src='https://a12.alphagodaddy.com/hosting_ads/gd01.js'></script>

  • Help with page width

    Hi Guys,
    I was hoping you could help me. This is my page width in dreamweaver.
    And now here's my site in Firefox.
    Does anyone know how to fix this?
    Many thanks

    Page width should be defined in your CSS code.  Below are some examples of centered, fixed-width CSS Layouts.
    View source in browser to see the code.
    Basic 1-col layout
    http://alt-web.com/TEMPLATES/Basic-1-col-fixed.shtml
    Basic 2-col layout
    http://alt-web.com/TEMPLATES/2-col-fixed-layout.shtml
    Basic 3-col layout
    http://alt-web.com/TEMPLATES/3-col-970.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

Maybe you are looking for

  • Configuring File adapter for OSB

    Hi, I wish to process invoice data that will be in the csv file . The structure of the file is as following : $H$<<Supplier Name>>,<<Supplier Site>>,<<Invoice Number>> $D$<<Line Number>> ,<<Business Unit>>,<<Location>>,<<Store Name>> $D$<<Line Number

  • What can i do the interruptor of  my iPod 2nd generation doesn't work?

    Im sorry i bought an iPod 2nd generación and all was Ok but today the interruptor doesnt work what can i do ?

  • Unable to download Oracle 11g tools for VS2008

    I checked the checkbox to agree to the terms, clicked on the button below it and got the page with the 200MB zip file (size is an estimate because I can't see the page right now). I click on that zip file to download and the page just gives me errors

  • Image map problem in Firefox 2.0.0.9

    I have created a page in Dreamweaver with an image that has an image map with six links. It works correctly in IE, Safari, and Opera, but Firefox 2.0.0.9 has an issue. When I click on the top link, I get the second url. When I click on the second, I

  • Clear guides in Photoshop CS4 JS

    Hi, I couldn't find anything in OMV or in the forum on how to remove existing guides in Photoshop. The help is highly appreciated. Yulia.