Help centering items on jpanel

hi,
i'm trying to center content on a jpanel, it doesn't seem to be working at all.
RegisteredMark = new JLabel(new ImageIcon("registered.gif"));
JPanel imageBottomPanel = new JPanel();
imageBottomPanel.setLayout(new GridLayout(1,3));
imageBottomPanel.add(RegisteredMark);
counterLabel = new JLabel();
String strCounter = String.valueOf(countOfNotesUsed);
counterLabel.setText(strCounter);
imageBottomPanel.add(counterLabel);
//     imageBottomPanel.setAlignmentX(JPanel.CENTER_ALIGNMENT);When the above is put into my jpanel it does not center, it's left aligned, i've also tried using the last line, the commented one, but that did not do anything. the imageBottomPanel is later placed into another jpanel, which has a border layout, in the SOUTH position.
Thanks.

If I were going to try aligning anything there, I would try aligning RegisteredMark, since that's what you want to align. Not the JPanel. And did you know there is a Swing forum to post non-advanced questions like this?

Similar Messages

  • 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

  • Help menu items not available Logic Pro 9

    I think this problem occured after upgrading to Mavericks. When I use the help menu in LogicPro9 and click on the most relevant keywords that I have typed I am presented with a dialog that indicates: "The selected topic is currently unavailable. The topic you were trying to view could not be found."
    I think this may be related to Spotlight not being indexed properly. After having problems re-indexing Spotlight I finally realised that in order for Spotlight to re-index correctly I had to add my permanently installed SD card to the Spotlight Privacy eclusion list. Instead of Spotlight taking 5+ hours to re-index a fast SSD it now did it in about 10mins.
    I am now confident Spotlight has re-indexed successfully.
    But the help menu items are still "unavailable"
    OSX 10.9.1
    MacBookPro Mid 2012
    Logic Pro 9.1.8

    I'm still putting this question out there to anyone who can help solve this problem. After trashing the Logic Pro9 App from the Finder>Applications I visited the Mac App Store and under the Purchases icon I re-installed Logic Pro9.
    The Help menu is still returning:
    "The topic you were trying to view could not be found." when clicking on the suggested returned results in relation to my search keywords.
    I know there are better resources out there but I find it handy to use the help menu instead of reaching for a book or website/weblink.
    Eventually I will switch to Logic Pro X but as Lennar Digital is still finalising their 64Bit version release of Sylenth (popular soft synth)  I will wait until that is completed later in the year.

  • With 3.6.12, Help menu item "For Internet Explorer Users" results in a "Page Not Found" error. Is this a known bug? Is it being addressed?

    Clicking the 3.6.12 Help menu item "For Internet Explorers" item results in a "Page Not Found" error.
    The URL of the resultant page is https://support.mozilla.com/en-US/kb/Windows%20start%20page?as=u
    Is this a known bug, if so, is it being addressed? If so, someone needs to work faster.
    If it is not a known bug, someone needs to get right on it - you want people to switch to Firefox and then there is this bug -- not a good way to impress Internet Explorer users.

    Hi Claudio Roca,
    I have encountered the same problem. Do you found the solution for this issue? I will much appreciated if you willing to share your solution and email to [email protected] Thank you so much.
    Regards,
    Hau Chee

  • 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.

  • Help centering text

    I'm trying to center a line of text in the text area.
    If the text entered can be displayed on one line, I would like the text centered; otherwise it should use the word wrap.
    I tried creating a method called center:
    // Defined outside this method, but shown since it is being referenced.
    int textAreaWidth = (int) textArea.getPreferredScrollableViewportSize().getWidth();     public String center(String text)
         int stringWidth = metrics.stringWidth(text);
         if (stringWidth > textAreaWidth)
              // Only handles text shorter than one line.
              return text;
         int availableWidth = textAreaWidth - stringWidth;
         int availableSpaces = availableWidth / metrics.charWidth(' ');
         int spacesToAdd = availableSpaces / 2;   
         // Adds the leading spaces to the text to center it.
         // Adds a trailing space as well to test the actual metrics length.
         for (int index = 0; index < spacesToAdd; index++)
              text = " " + text + " ";
         return text;
    }I coudln't find anything to use in the Java Doc, so I thought I'd write one to help me out.
    Testing it, I used:
    textArea.setText(center("m"));The issue is that the JTextArea is returning a width of 300. That is correctly set, and returning the right width.
    The string width is returning at 11, which is expected for the letter m.
    The available width is 289. Also correct. 300 - 11 = 289
    The metrics character width of a space is 3.
    The spacesToAdd returns at 48.
    A string with a metrics width of 299 is returned. That being, 48 spaces and the letter m.
    However, the JTextArea displayed in the JPanel shows this text wrapping onto a second line -- indicating the JTextArea displayed is not the actual width I set it to.
    The code to setup the JTextArea is as follows:
    JPanel panel = new JPanel();
    textArea = new JTextArea();
    textArea.setPreferredSize(new Dimension(300, 60));
    textArea.setLineWrap(true);
    textArea.setFocusable(false);
    textArea.setEditable(false);
    textArea.setWrapStyleWord(true);
    textArea.setFont(APP_FONT);
    scrollPane = new JScrollPane(textArea);
    scrollPane.setBorder(BorderFactory.createEmptyBorder());
    panel.add(scrollPane);What am I doing wrong?
    I suppose I could use a document and set styles... but ... I was trying to get this working...
    Help would be appreciated.. Thanks!

    If you need further help then you need to create a [url http://homepage1.nifty.com/algafield/sscce.html]Short, Self Contained, Compilable and Executable, Example Program (SSCCE) that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.
    Don't forget to use the [url http://forum.java.sun.com/help.jspa?sec=formatting]Code Formatting Tags so the posted code retains its original formatting.

  • Help JMenuBar conflict with JPanel

    Hi, I'm creating an image converter. The simple Interface is constituted of a JFrame containing a Menu Bar, some buttons, and a central JPanel (or JScrollPanel or Panel that i've tried...) on I display a Tiff Image.
    The problem is:
    When I launch the tool, my menu and my menu Items are visible but when I load an Image, the menu Items that I open from menu are displayed under the Panel.
    Someone can help me please?
    Thanx.

    In you message you mention that you use a Panel. Does this mean that you are using a java.awt.Panel to display your image. If you are than that is your problem as Panel is an old heavywieght gui component whereas you are probably using JMenuBar and JMenuItem for the menu which are lightweight components. You should not mix the two types as you get problems. Make the panel a JPanel and stick to using lightweight swing components and it should be ok.

  • Error msg,please help :) "The item you tried to buy is no longer available"

    Hi there, I am using a Macbook pro with Leopard with the newest version of iTunes. Many, many times when I have tried to purchase the newest episode of LOST, I click 'purchase' and type in my information and click 'yes', and for an instant it says 'purchasing' and shows the striped purchasing par across the top for only an instant, and then that disappears and an error message comes up, saying
    "The item you tried to buy is no longer available.
    The availability of the item changed while you were using the store.
    The same item may be available with a different price or elsewhere
    on the store."
    In past weeks, I have been eventually able to purchase the episode, after trying to purchase and receiving the same error literally hundreds of times. Why do I try hundreds of times? Because I want to see LOST! And I will have to face the wrath of my disappointed housemates if I fail to present the episode in time. But this is very, very, very, very frustrating! Please help, iTunes! Or anyone, any help will be greatly appreciated. But this glitch has been going on literally for weeks/months! I expected it to be ironed out and fixed completely by now, but it is not at all, it is just as bad as it was when I first noticed it shortly after the beginning of LOST season 4, a few months ago.
    Also, when I try to email iTunes, I am sure that I can email iTunes if I finally pick a subject that does not apply, but I do not want to do that.
    It is also very, very, very frustrating, whenever trying to email iTunes, to be forced into picking a subject from a very, very limited menu. Many questions, such as this question, do not fit at all into any of the choices presented, from which a person is forced to choose a subject, before being allowed to type an email to iTunes.
    I look forward to any help anyone can give regarding this error message, so that I will be able to purchase the new LOST episode from iTunes. Thanks for your help!

    I had the same issue this morning downloading a pre-order of Alanis, Flavors of Entanglement . I noticed that the only thing that had changed fro me was that I had some song credits for purchasing ticketmaster tickets over the past few weeks. When I went ahead and spent my remaining credits... it downloaded with no prompting or trouble. Maybe the credits issues hangs it up?

  • Query Help with Item Master & Warehouse Code

    Forum,
    I would like help with a query to identify any items within a database where a particular warehouse code does NOT exist against it. At present I have the following:
    select T0.ItemCode, T1.WhsCode from OITM T0
    INNER JOIN OITW T1 on T0.ItemCode = T1.ItemCode
    where T0.ItemCode NOT IN ('WHS1')
    This is returning all other instance and not just a list of item codes where 'WHS1' is missing from within the 'Stock Data' tab.
    Thanks,
    Sarah

    Hi Sarah...
    Try This
    SELECT T0.ItemCode, T0.ItemName, T1.WhsCode
    FROM OITM T0 INNER JOIN OITW T1 ON T0.ItemCode = T1.ItemCode
    WHERE T1.WhsCode not in ( 'WHS1')
    Regards
    Kennedy

  • Help with adding a JPanel with multiple images to a JFrame

    I'm trying to make a program that reads a "maze" and displays a series of graphics depending on the character readed. The input is made from a file and the output must be placed in a JFrame from another class, but i can't get anything displayed. I have tried a lot of things, and i am a bit lost now, so i would thank any help. The input is something like this:
    20
    SXXXXXXXXXXXXXXXXXXX
    XXXX XXXXXXXXXXX
    X XXXXX
    X X XX XXXXXXXXXXXX
    X XXXXXXXXX XXX
    X X XXXXXXXXX XXXXX
    X XXXXX XXXXX XXXXX
    XX XXXXX XX XXXX
    XX XXXXX XXXXXXXX
    XX XX XXXX XXXXXXXX
    XX XX XXXXXXXX
    XX XXX XXXXXXXXXXXXX
    X XXXXXXXXXXXXX
    XX XXXXXXX !
    XX XXXXXX XXXXXXXXX
    XX XXXXXXX XXXXXXXXX
    XX XXXXXXXX
    XX XXXX XXXXXXXXXXXX
    XX XXXX XXXXXXXXXXXX
    XXXXXXXXXXXXXXXXXXXX
    Generated by the Random Maze Generator
    And the code for the "translator" is this:
    package project;
    import java.io.*;
    import java.awt.*;
    import javax.swing.*;
    public class Translator extends JFrame {
       private FileReader Reader;
       private int size;
       Image wall,blank,exit,start,step1,step2;
      public Translator(){}
      public Translator(File F){
      try {
           Reader=new FileReader(F);}
      catch (IOException e){
           JOptionPane.showMessageDialog(null,"Error Opening File","Error",JOptionPane.ERROR_MESSAGE);}
      try {
      size=Reader.read();
      System.out.write(size);}
      catch (IOException e){
           JOptionPane.showMessageDialog(null,"Error Opening File","Error",JOptionPane.ERROR_MESSAGE);}
      Toolkit theKit=Toolkit.getDefaultToolkit();
      wall=theKit.getImage("wall.gif");
      blank=theKit.getImage("blanktile.jpg");
      exit=theKit.getImage("exit.jpg");
      start=theKit.getImage("start.jpg");
      step1=theKit.getImage("start.jpg");
      step2=theKit.getImage("step1.jpg");
      JPanel panel=new JPanel(){
      public void paintComponent(Graphics g) {
      super.paintComponents(g);
      int ch=0;
      System.out.print("a1 ");
      int currentx=0;
      int currenty=0;
      try {ch=Reader.read();
          System.out.write(ch);}
      catch (IOException e){}
      System.out.print("b1 ");
      while(ch!=-1){
        try {ch=Reader.read();}
        catch (IOException e){}
        System.out.write(ch);
        switch (ch){
            case '\n':{currenty++;
                      break;}
            case 'X':{System.out.print(">x<");
                     g.drawImage(wall,(currentx++)*20,currenty*20,this);
                     break;}
           case ' ':{
                     g.drawImage(blank,(currentx++)*20,currenty*20,this);
                     break;}
            case '!':{
                     g.drawImage(exit,(currentx++)*20,currenty*20,this);
                      break;}
            case 'S':{
                     g.drawImage(start,(currentx++)*20,currenty*20,this);
                      break;}
            case '-':{
                     g.drawImage(step1,(currentx++)*20,currenty*20,this);
                      break;}
            case 'o':{
                      g.drawImage(step2,(currentx++)*20,currenty*20,this);
                      break;}
            case 'G':{ch=-1;
                      break;}
                  }//Swith
          }//While
      }//paintComponent
    };//Panel
    panel.setOpaque(true);
    setContentPane(panel);
    }//Constructor
    }//Classforget all those systems.out and that stuff, that is just for the testing
    i call it in another class in this way:
    public Maze(){
        firstFrame=new JFrame("Random Maze Generator");
        firstFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
        Container c = getContentPane();
        c.setLayout(new FlowLayout());
        (...)//more constructor code here
        Translator T=new Translator(savefile);
        firstFrame.add(T);
        firstFrame.getContentPane().add(c);
        firstFrame.setBounds(d.width/3,d.height/3,d.width/2,d.height/4);
        firstFrame.setVisible(true);
        c.setSize(d.width/2,d.height/4);
        c.show();
        }i know it may be a very basic or concept problem, but i can't get it solved
    thanks for any help

    Try this. It's trivial to convert it to use your images.
    If you insist on storing the maze in a file, just read one line at a
    time into an ArrayList than convert to an array and pass that to the
    MazePanel constructor.
    Any questions, just ask.
    import java.awt.*;
    import javax.swing.*;
    public class CFreman1
         static class MazePanel
              extends JPanel
              private final static int DIM= 20;
              private String[] mMaze;
              public MazePanel(String[] maze) { mMaze= maze; }
              public Dimension getPreferredSize() {
                   return new Dimension(mMaze[0].length()*DIM, mMaze.length*DIM);
              public void paint(Graphics g)
                   g.setColor(Color.BLACK);
                   g.fillRect(0, 0, getSize().width, getSize().height);
                   for (int y= 0; y< mMaze.length; y++) {
                        String row= mMaze[y];
                        for (int  x= 0; x< row.length(); x++) {
                             Color color= null;
                             switch (row.charAt(x)) {
                                  case 'S':
                                       color= Color.YELLOW;
                                       break;
                                  case 'X':
                                       color= Color.BLUE;
                                       break;
                                  case '!':
                                       color= Color.RED;
                                       break;
                             if (color != null) {
                                  g.setColor(color);
                                  g.fillOval(x*DIM, y*DIM, DIM, DIM);
         public static void main(String[] argv)
              String[] maze= {
                   "SXXXXXXXXXXXXXXXXXXX",
                   "    XXXX XXXXXXXXXXX",
                   "X              XXXXX",
                   "X  X XX XXXXXXXXXXXX",
                   "X    XXXXXXXXX   XXX",
                   "X  X XXXXXXXXX XXXXX",
                   "X  XXXXX XXXXX XXXXX",
                   "XX XXXXX XX     XXXX",
                   "XX XXXXX    XXXXXXXX",
                   "XX  XX XXXX XXXXXXXX",
                   "XX  XX      XXXXXXXX",
                   "XX XXX XXXXXXXXXXXXX",
                   "X      XXXXXXXXXXXXX",
                   "XX XXXXXXX         !",
                   "XX  XXXXXX XXXXXXXXX",
                   "XX XXXXXXX XXXXXXXXX",
                   "XX          XXXXXXXX",
                   "XX XXXX XXXXXXXXXXXX",
                   "XX XXXX XXXXXXXXXXXX",
                   "XXXXXXXXXXXXXXXXXXXX"
              JFrame frame= new JFrame("CFreman1");
              frame.getContentPane().add(new MazePanel(maze));
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.pack();
              frame.setResizable(false);
              frame.setVisible(true);
    }

  • Why are iTunes, View, Window, and Help menu items disabled?

    I am frequently encountering an issue in iTunes 10.5 (141) where all the menu items in the iTunes, View, Window, and Help menus are disabled (greyed out). Why is this happening and can it be stopped?
    I've seen this issue on different Mac OS X 10.7.2 machines. It seems to occur during playlist manipulation, where I'm making new playlists, adding items to them and editing them and the items. In the worst cases, I'm forced to quit and restart iTunes, although I have to quit by using the context menu option in the Dock as the Quit option is disabled in the application.
    I'd appreciate any advice on workarounds for this that don't involve quitting and restarting iTunes.

    I'm also having the same issue.  It was happening with 10.5.1 and now still with 10.5.2.  I'm using a 2008 iMac running 10.6.8.  I do not use iTunes Match.  This seems to happen for no apparent reason i/o/w, I can't determine a pattern as to when it happens, but it occurs about once in every 10 times that iTunes is open and it seems to happen after it's been open for a while, but again, no particular pattern. 
    Sometimes, all the menu items are grayed out, and other times, 70% of the menu items are grayed out.  I can still use the other functionality in iTunes, but must must Quit from the dock (it quits gracefully and no Force Quit is necessary).  Relaunching restores eveything to normal for about a week. 
    I work with technical diagnostic issues and can usually pinpoint a problem, isolate an issue, or determine a pattern, but this one has me stumped. I thought 10.5.2 might fix it, but no.  Maybe 10.5.3?

  • Accessing Field Help from item on different Page

    I manually created a tabular form used for posting and I wanted to implement the field help for the column headers. I have a seperate maintenance form that already has the appropriate help text stored for each item. I want to have my tabular form popup help get the help text from the other form. I looked at the code from the other form and it was doing this for the field:
    javascript:popupFieldHelp('25020711860698767','439667227918056')
    So I went into the Report attributes section of my tabular form and entered this:
    <a href = "javascript:popupFieldHelp('25020711860698767','439667227918056')"> Security Type </a>
    It seems to work perfectly, but I just want to make sure this is the best way to do this. Are the arguments sent to popupFieldHelp unique for every item in an application?

    Sorry. Had to change the href so you could see what I typed:
    <-a href = "javascript:popupFieldHelp('25020711860698767','439667227918056')">Security Type<-/a>

  • 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 centering background video in fluid grid layout inside div

    Hopefully this all makes sense. I am trying to center the background video (the animation on the website towards the bottom)... I have tried all sorts of things to try and center this. If it can't be done, it can't be done. The banner on top works as should. If all else fails I will just not use a fluid grid page and that will be that. I self taught myself  Adobe After Effects to make that animation (took me a month and 1/2) and I have self taught myself Dreamweaver.. coming from Frontpage and Expression Web.
    Here is the website (thank you in advance for your input):
    http://a1customcomputers.com/Web%20Development/A1CC/Main.html
    I just tested it and it's not playing how it should.. I'll figure that out later but where it says "Enter", that is what I need centered. Thanks
    My html so far:
    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!-->
    <html class="">
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Untitled Document</title>
    <link href="boilerplate.css" rel="stylesheet"/>
    <link href="assets/style.css" rel="stylesheet"/>
    <script src="respond.min.js"></script>
    <script type="text/javascript" src="assets/jquery-1.5.1.js"></script>
    <script type="text/javascript" src="jquery.videoBG.js"></script>
    <script type="text/javascript" src="assets/script.js"></script>
    </head>
    <body>
    <div class="gridContainer clearfix">
    <div id="div1" class="fluid">
      <div align="center"><img src="A1_Banner.jpg" /></div>
    </div>
    <p> </p>
    <p> </p>
    <div id="div2" class="fluid"></div>
    </div>
    </body>
    </html>
    my style.css so far:
    @charset "utf-8";
    /* Simple fluid media
       Note: Fluid media requires that you remove the media's height and width attributes from the HTML
       http://www.alistapart.com/articles/fluid-images/
    img, object, embed, video {
    max-width: 90%;
    /* IE 6 does not support max-width so default to width 100% */
    .ie6 img {
    width:100%;
    Dreamweaver Fluid Grid Properties
    dw-num-cols-mobile:  5;
    dw-num-cols-tablet:  8;
    dw-num-cols-desktop: 12;
    dw-gutter-percentage: 15;
    Inspiration from "Responsive Web Design" by Ethan Marcotte
    http://www.alistapart.com/articles/responsive-web-design
    and Golden Grid System by Joni Korpi
    http://goldengridsystem.com/
    .fluid {
    clear: none;
    width: 400px;
    float: left;
    display: block;
    padding-left: auto;
    padding-right: auto;
    .fluidList {
        list-style:none;
        list-style-image:none;
        margin:0;
        padding:0;       
    /* Mobile Layout: 480px and below. */
    .gridContainer {
    width: 100%;
    clear: none;
    float: none;
    height: 100%;
    margin-top: 20px;
    padding-left: 0.7851px;
    padding-right: .7851px;
    #div1 {
    width: 100%;
    #div2 {
    width: 400px;
    height: 400px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    .zeroMargin_mobile {
    margin-left: 0;
    .hide_mobile {
    display: none;
    /* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
    @media only screen and (min-width: 481px) {
    .gridContainer {
    width: 100%;
    padding-left: 0.7581%;
    padding-right: 0.7581%;
    clear: none;
    float: none;
    margin-top: 20px;
    height: 100%;
    #div1 {
    width: 100%;
    #div2 {
    width: 400px;
    height: 400px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    .hide_tablet {
    display: none;
    .zeroMargin_tablet {
    margin-left: 0;
    /* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
    @media only screen and (min-width: 769px) {
    .gridContainer {
    width: 100%;
    margin-top: 20px;
    clear: none;
    float: none;
    padding-left: 0.7581%;
    padding-right: 0.7581%;
    height: 100%;
    #div1 {
    width: 100%;
    margin-bottom: 13%;
    #div2 {
    width: 400px;
    margin: 0 auto;
    .zeroMargin_desktop {
    margin-left: 0;
    .hide_desktop {
    display: none;
    /* DEMOS */
    #div2 {
    width: 400px;
    margin: 0 auto;

    Not trying to argue with you and I know you are only trying to help and I know that you know ALOT more about this than I do.. you do... I don't know if background was the correct "place" to call it.. but nevertheless.. what I beleive it is, is in the background.. and maybe that is part of the problem. It is supposed to be called from a JQuery plugin, and where I have it now is in a "div [div2]" in the "gridcontainer". It was working and my latest attempts it was working great.. but wasn't centered. But I've changed a bunch of code around lately and so that is why it is not working right now... The "Enter" that you see on the link I provided is the "poster". When I get a chance I will work on it and get the animation working again.. or back to normal.. just not centered. At first I was thinking "centered vertically".. and so for like a week, maybe longer.. everthing that I was searching for and trying was for "vertically center a div".. then it hit me.. you jacka$$.. you want to horizontally center it... Haha! Again, thank you for your input.

Maybe you are looking for

  • No message tone or icon after software update

    I did a software update yesterday to the 10.2.1.2102 and now when i receive a text my phone doesnt notify me of this. No tone goes off and no icon appears. HELP!

  • Tiger 10.4.6 + Logic 7.2 + digi 001 no worky...HELP!!

    hi there, so i received updates last night and installed. - tiger 10.4.6 - logic 7.2 - g4 dual 1.25 ghz with 1.25 ram so i've been using my digi 001 as my soundcard, running coreaudio. after installing everything last night, the 001 was not being see

  • NVIDIA Vision 2 3D Issues Qosmio 875

    Its been 4 days since I purchased my Qosmio X875-7290 and 3D first worked out of the box and set up was a breeze. 2 days ago the 3D started to not display correctly producing a distorted 3D image which looks like 3 images converging into one. It seem

  • Illustrator CS4 to PDF, text characters lost?!

    This sounds weird to me even as i type it. but i have converted a cs4 illustrator doc to a pdf and it is missing a character in one of the words. Lost during conversion?? is this some sort of fluke?? Heather

  • Mac Pro, Adobe CS3 and pretty pinwheels: Am I doing something wrong?

    I have been a designer happily on PCs for many years but the time had come to migrate the business across to Mac. On paper, I thought my new rig was the duck's guts. I waited patiently for CS3 (to take advantage of the Intel processor) before I bid t