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

Similar Messages

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

  • Hi! I am newbie to Reports need help with check boxes

    Hi! I am newbie to Reports need help with check boxes. I am try-in to make a new check boxes that will validate in runtime. I have created two frames and one frame is dummy and other frame has big X line on it with conditions. Is this a right way to create check box! Please help thanks!

    and one frame is dummy and other frame has big X
    line on it with conditions. Is this a right way to
    create check box! Please help thanks!Instead of creating a frame for X, you can create Ractangle and place X in it. Rest is fine.

  • Please help my email boxes have gone .i am not very technical so need very simple words.

    Please help my email boxes have gone .i am not very technical I am the older generation.

    Lyndaneedshelp wrote:
    Thank you for replying . I do not have the all mailboxes in the left hand side of the email page. I cannot go to any of my mailboxes . I am receiving  mail  but the can put them in the boxes but cannot go into the boxes. Hope I am making sense. I am not very technical older generation. Thank you
    OK. Sounds like you are simply below the top level of the Inbox menu. Look at the upper left of the mail box list. You should some text (what exactly will depend on where you are) precedded by an <. Tap on that until you return to the top of the list.
    Also - Phil could very well be correct (hard to say with being able to see your screen).

  • Help centering picture in a box using CSS

    I have a picture as background in the layer.. but i'm trying
    center the picture with box together whenever user resize or change
    their display example, if user change from their display from 1024
    x 768 to some wide screen display it is still center of the page
    please help thanks

    Use CSS to center it, e.g., background-position:center.
    Please make sure you familiarize yourself with the use of CSS
    before trying
    this.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "fatjedi" <[email protected]> wrote in
    message
    news:f9658m$quu$[email protected]..
    >I have a picture as background in the layer.. but i'm
    trying center the
    > picture with box together whenever user resize or change
    their display
    > example,
    > if user change from their display from 1024 x 768 to
    some wide screen
    > display
    > it is still center of the page
    > please help thanks
    >

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

  • 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] Password input box NOT showing up at all.

    The actual box used to type the password in just will not show up. My phone can only be turned on my swiping the screen up. Everything else shows up, the time, email and text noticications, but when I swipe the screen up all the way I am left with a dimmed background and the black bar that goes across the top of the screen. I've had a password on my phone for over 3 months and haven't turned it off. 
    I can't restart my phone because the power button is broken and sticks if pressed... meaning it will turn itself on and off continuously for hours on end until I wiggle it out of place. 
    Is there any way to fix this other than waiting... a full 24 hours, probably, since I just charged my phone, for the battery to die? 
    Solved!
    Go to Solution.

    NotApplicable wrote:
    I can't restart my phone because the power button is broken and sticks if pressed... meaning it will turn itself on and off continuously for hours on end until I wiggle it out of place. 
    Is there any way to fix this other than waiting...
    Reboot: With the BlackBerry device POWERED ON, using the side edge volume keys, press and hold down both of the Up and Down volume keys for about 20 seconds, ignoring the initial screenshot message... the screen will go black and reboot.
    Try that and see if you password screen then appear correctly.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Please help with text boxes

    Can somebody help me wit hmy problem. I have a fom with many tables in it, some cells of the table are text boxes or at least they were when I developed it. Now I need to edit some of the cells and for some reason I cannot do it as the cell is not a text box but became (untitled<draw>) I cannot change its type back to text. Can some one advise what to do whitouh retyping text again in the new cell.
    Many thanks in advance

    You are welcome!
    I have a preference for Javascript (just get in the syntax zone) and use it for most things (except dates).
    As you know:
    this = current object
    rawValue = accesses the value of object
    From an Excel point of view FormCalc is similar and has inbuilt function like sum(), Max(), etc. Syntax is $ for current object and you don't need the rawValue. This is very handy when summing a column in a repeating table. Also FormCalc is excellent for working with time and dates. (not that you can't work around in Javascript, but it is heavier).
    Adobe have a very good reference for FormCalc at http://www.adobe.com/go/learn_lc_formCalc_82 and I would recommend that to you. I think it comes from the LC help file, but is easier to use.
    From a performance point of view, you can either have FormCalc in the calculate event of an object, which looks back at other fields (this will fire each time one of these fields changes). Alternatively you can have the FormCalc in the exit event of a field, which pushes a calculation/value forward to another object.
    Functions are handy if you have a script that you are using several times in a form. You write the script in a "script variable" and then call it in the objects events. HOWEVER, script variables are available in Javascript only.
    One last thing is that if you have a constant (like VAT), then rather than including  "* 0.21" in all of your calculations, use a global variable in the Form / Properties / Variables tab. currentVat = 0.21. Then in your calculations would be "* currentVat.value". If the VAT rate changes then you only have to change it in one location.
    In summary FormCalc is more akin to Excel; just watch the syntax.
    Good luck,
    Niall

  • 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

  • Need help with IE6 box drop problem DW CS4

    Having a problem with this page: http://www.recoverings.com/tarzan.html in IE6. Maincontent drops below the sidebar menu. Looks fine in FF, Safari, IE7.
    All other pages work well. I assume that this has something to do with the width of the .wrapnail and .thumbnail divs, but reducing the margins doesn't seem to help and the images start to get too close together. What am I missing here?
    Can someone help me solve this?
    I would also appreciate any suggestions on cleaning up my CSS. Seems like I have an awful lot of stuff in there. Maybe it's okay but could it be cleaner?
    Thanks for your help,
    Phil

    IE bug Float Drop is fairly common.  Make sure your page wrapper division is wider than the combined width of left sidebar + main content + left & right borders if any.  If that doesn't help, add an overflow: hidden rule to your floated container and make sure you have cleared both floats.
    More about float drop and the expanding box problem can be found here:
    http://www.positioniseverything.net/explorer/expandingboxbug.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics |  Print | Media Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • 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 menu "Search" box missing in Dreamweaver 5.5 for Mac

    I've just upgraded from CS3 to CS5.5 on Mac OS 10.6.8 and am still finding my way around the new menus.  The easiest way to find a menu command is usually to use the spotlight type "search" box that appears at the top of the help menu, which flags up exactly were each command is when you type in it's name. However, while the search box is there in my other CS5.5 applications it's missing from Dreamweaver.  Can anyone tell me how to fix this?
    I have tried the obvious things like repairing permissions and rebooting and have also got Spotlight to re-index my hard disk  in case the fault lay there, but it didn't help.
    Just to clarify, here's how the help menu looks in Dreamweaver with the "search" box missing.
    And here's how the "search" box appears in the other CS5.5 applications.

    You need to use F1 key to launch this window:
    Alternatively, you can download the full helpfile in pdf form from this link:
    <http://help.adobe.com/en_US/dreamweaver/cs/using/dreamweaver_cs5_help.pdf>
    Adobe help system is now online so that you have access to the latest info at any time including solutions given in these forums.
    hth

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

  • F1 help for Check Box on Selection-Screen

    Hi Friends,
    I want to attach F1 help for a check box on selection-screen. Though I have checked SDN community for this but did not get any relevant answer.
    so, please give me correct example if someone has done similar.
    Regards
    Pradeep

    Pradeep,
    I think this fucntion module needs to be used DD_SHLP_CALL_FROM_DYNP.If possibe try to screen debug using /H before pressing f1 for a field.
    K.Kiran.

Maybe you are looking for