Skip navigation
zhgart
Currently Being Moderated

how to modify layout manually?

May 16, 2012 8:04 PM

Tags: #manually #auto_layout

dw  is excellent support to css, but seems to lack of manual modification.

How shall we modify layout size manually? when we see apdiv layout?

 
Replies
  • Currently Being Moderated
    May 16, 2012 11:25 PM   in reply to zhgart

    Please read the following

    Use Dreamweaver without knowing HTML and CSS?

     

    Forget it.  Although you can do some very rudimentary things only using Design view, the scope of your capabilities will be extremely limited.  Dreamweaver is not kind to people who do not take the time to properly prepare for its use.  Consider spending some time at http://www.w3schools.com and gain familiarity with HTML and CSS.  You'll find DW much easier to use if you do.

     

    Without knowing much HTML and CSS, not only will you be frustrated in USING Dreamweaver, you'll also be frustrated in understanding the answers that you get here in the forum.  Please do us and yourself a favor - do your homework! And welcome to the forum!

     
    |
    Mark as:
  • Currently Being Moderated
    May 17, 2012 2:20 AM   in reply to zhgart

    If you want to use drag and drop and dont want to learn any html and css you might want to try 'Adobe Muse' this is software more akin to DTP applications I am lead to believe.

     

    AP <divs> can be a complete nightmare to work with unless you know their limitations. Each AP <div> is an independent element which cannot relate to anything else on the page. For instance if you want to add more text to an AP <div> then you will have to rearrange all the other AP <div> below it to take into consideration the extra text.

     

    AP <divs> whilst less troublesome now than in years gone past because browsers had no zoom tool, they now do, so these individual containers can be enlarged proportionally to maintain the layout structure, whereas without the zoom tool only the text got enlarged which caused containers to overlap and the text be unreadable.

     

    Use them only if you want to create a very very simple website structure.

     
    |
    Mark as:
  • Currently Being Moderated
    May 17, 2012 8:24 AM   in reply to zhgart

    zhgart wrote:

    why shall we not take advantage of comfort software offered?

    While it makes your life easier, IT DOESN'T WORK in today's web world

     

    http://www.apptools.com/examples/pagelayout101.php

     
    |
    Mark as:
  • Currently Being Moderated
    May 17, 2012 8:34 AM   in reply to zhgart

    Unless you know css and html inside out and back to front I'm afraid you will continually be frustrated. Even when you know it inside out and back to front it gets frustrating at times so how anyone produces anything without indepth knowledge is well frankly beyond me.

     

    And as for trying to work with AP <divs> well thats an art all by itself.

     
    |
    Mark as:
  • Currently Being Moderated
    May 17, 2012 3:27 PM   in reply to zhgart

    Try the following as a nice starter

     

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <style>
    * {
        padding: 0;
        margin: 0;
    }
    html {
        background: #333;
        height: 100%;
        overflow-y: scroll;
    }
    body {
        background: #FFF;
        width: 980px;
        margin: auto;
        overflow: hidden;
    }
    .header {
        background: #9F6;
        height: 100px;
        padding: 20px;
    }
    .nav {
        color: #FFF;
        background: #000;
        height: 35px;
        padding: 0 20px;
    }
    .article {
        min-height: 300px;
        padding: 20px;
    }
    .footer {
        font-size: 0.8em;
        color: #999;
        background: #9F6;
        height: 30px;
        padding: 5px 20px;
    }
    </style>
    </head>
    
    <body>
    <div class="header">
        <h1>Header</h1>
    </div>
    <div class="nav">
        Navigiation Bar
    </div>
    <div class="article">
        <h2>Article Header</h2>
      <p>This is the content</p>
    </div>
    <div class="footer">
        <p>My Footer</p>
    </div>
    </body>
    </html>

     

    Gramps

     
    |
    Mark as:
  • Currently Being Moderated
    May 17, 2012 7:18 PM   in reply to zhgart

    you may never take car or bus to go to work ,just walk.

    Actually, I have progressed with time and technology. my work is at home.

     

    However, that same technology dictates that I must code as I have shown in order to achieve proper outcomes. Many moons ago I did start with some smart MS program (Frontend I think it was called) which automated many tasks for me. I soon outgrew that product when I became a professional web developer.

     

    With my example, which did take up some of my valuable time, I only tried to show you the way that professionals tackle their projects. I did not think it would lead to me being ridiculed.

     

    I wish you the best of Irish in your endeavors to rid this world of idiots like me.

     

    Grumps

     
    |
    Mark as:
  • Currently Being Moderated
    May 18, 2012 6:00 AM   in reply to zhgart

    zhgart wrote:

    I prefer to drag, point and a click way to type long-winded items.

    similarly, do you fancy using template or repeat typing every thing from beginning?

    You are welcome. At age 76, I am probably lazier than you.

    I use DW Snippets to insert long winded items

    I do not fancy templates... I much prefer Server Side Includes

     

    I still fear that you have missed the point that, even after a long struggle, when you get your layout to look OK on your computer, when viewed in a visitor's computer will fall apart when he increases his  text size.

     

    Using AP Div's it is like you are building a strong stone house on a foundation of straw.

     

    "Teachers open the door. You enter by yourself"

        Chinese Proverb

     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)

Answers + Points = Status

  • 10 points awarded for Correct Answers
  • 5 points awarded for Helpful Answers
  • 10,000+ points
  • 1,001-10,000 points
  • 501-1,000 points
  • 5-500 points