White space under page

I created a website with all the page property sizes equal in all pages. My maximun height is of 300px but I have also tried 500px on all pages.
Website looks great on design mode but when I preview it within Muse or export as html my homepage (page itself not the background) has a long white space I cannot reduced to the content of the page.
Same thing is happening to 2 different sites I'm building and I have spent over 8 hours looking at forums and trying to debug the problem unsuccessfuly.
Can somebody provide some support. I'm supposed to deliver this 2 sites by in 4 more days.
Thank you so much,
Gloria Segura de Otth
949-689-0848
[email protected]

I have the same problem, and it drives me crazy.  Muse adds extra trapped white space to certain pages in my site, but not all of them.  How about letting us lock the page size so Muse can't add to it?
Here's a sample.
Go to kinetta.com, click to enter, and click on the Range tab at the bottom.  That page is longer than all the others.
I just downloaded Muse 5.0 (Mac) and while the new complex contact form is useful, the second you add to it, and move elements around to make it two columns wide, you can not get rid of the trapped white space where moved elements used to be.  There is a dotted blue line around the area, but it lacks typical resizing squares that other elements have.  However, it determines the size of the window and can not be changed.
Finally, in the new complex forms, can we have check-boxes or buttons so the user can select certain things and those are reflected into the form that is emailed?
Thanks.
[email protected]

Similar Messages

  • White space under table on page how to get rid of it

    I created a new page, inserted a table to fill the page and
    put in a background color. When I look at the page in Dreamweaver,
    there is no white space under the table at the bottom of the page.
    When I preview the page in a browser, the table ends about an inch
    from the bottom of the page and I have about an inch of white space
    under the table. Does anyone have an idea why this is happening?
    Thanks for any help you can give. I'm going crazy trying to
    get rid of it.
    Diane

    Fix up the errors with your html firstly - then see where you
    are at with
    the page....
    The first thing to do would be to get rid of the table
    heights - it's
    invalid and won't render cross browser anyway. Error:
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fhome.comcast.net%2F~moordian%2F
    PS: Are you working on a PC or a Mac?
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.DreamweaverResources.com
    |Tutorials|SEO |CSS Templates
    http://www.csstemplates.com.au
    http://www.adobe.com/devnet/dreamweaver/css.html
    CSS Tutorials for Dreamweaver
    "diane7" <[email protected]> wrote in
    message
    news:efa1h5$o12$[email protected]..
    > When I am working on the page in Dreamweaver, I can't
    add content any
    > lower
    > than the gold bar at the bottom. In fact, none of the
    white under the
    > gold bar
    > shows up in Dreamweaver, when I'm working on the page.
    It only shows up
    > when I
    > preview it or publish it. That's why I'm so baffled. The
    gold bar should
    > be
    > the bottom of my index page but that white shows up in
    the published
    > version
    > underneath it. My page properties are set to 0 margins
    on all four sides
    > of
    > the page and the table is set to 0 padding and 0 cell
    spacing, so I don't
    > think
    > that's it.
    > Diane
    >

  • Clear white space under layer divs

    Is there a way to clear the white space under layer divs?  See below.  There are three layers, and then another div tag below that that has "Text".  The red area is pointing to the white space I need to get rid of.
    Here is the code:
    <html>
    <head>
    <style type="text/css">
      div.layer1 {
      background-color:lime;
      width:150px;
      height:150px;
      position:relative;
      top:10px;
      left:80px;
      z-index:2
      div.layer2 {
      background-color:yellow;
      width:100px;
      height:100px;
      position:relative;
      top:-60px;
      left:35px;
      z-index:1
      div.layer3 {
      background-color:orange;
      width:120px;
      height:120px;
      position:relative;
      top:-180px;
      left:175px;
      z-index:3
    </style>
    </head>
    <body>
    <div class="layer1">
      Layer One<br>
      Layer One<br>
      Layer One<br>
      Layer One<br>
      Layer One<br>
    </div>
    <div class="layer2">
      Layer Two<br>
      Layer Two<br>
      Layer Two<br>
      Layer Two<br>
      Layer Two<br>
    </div>
    <div class="layer3">
      Layer Three<br>
      Layer Three<br>
      Layer Three<br>
      Layer Three<br>
      Layer Three<br>
    </div>
    <div> Text </div>
    </body>
    </html>

    There is really no such thing as a "layer div". Old versions of Dreamweaver used the name "layer" to mean an absolutely positioned div.
    What you have done is to create relatively positioned divs. A relatively positioned element is moved from its normal place in the flow of the document without affecting other elements.
    Your three divs have a combined height of 370px. As a result, your text is placed that far down the page.
    If you wanted to move it up, you would need to give the Text div an ID and a negative top margin of -170px.
    #textdiv {
        margin-top: -170px;

  • Blank white spaces on pages

    Hi,
    For some reason, on my website it is showing some random blank white spaces? They appear to be in the same places on each individual page so I was wondering if it could possibly be anything to do with the master page? In preview mode, both on Adobe Muse and on the browser, it appears to be fine but as soon as I've put it up on to the website, the white spaces are evident and I need to get it fixed ASAP.
    My website is http://beckyofficial.businesscatalyst.com/index.html
    Although, please ignore the poor quality of my website for now; it's still under construction.
    If anybody here could help me, I'd be really grateful.
    Many thanks in advance.

    Hi Jadey,
    Please send your .muse file to [email protected] Add link to this forum post and refer it to me. We'll investigate the issue and get back to you.
    Regards,
    Aish

  • Extra white-space after page proccess

    I am trying to suppress white-spaces after the page is
    processed.
    Usually it doesn't bother me, but it does bother javascript.
    Explanation:
    1. I am sending an xmlhttp request to coldfusion to process.
    2. Coldfusion runs a stored procedure on an oracle database
    that returns the results as XML.
    3. Coldfusion returns the XML back to the client:
    <cfoutput>#XmlParse(ajaxXML)#</cfoutput>.
    4. The client (Javascript) runs the function that handle the
    data and returns an error because: "
    xml declaration not at start of external entity".
    I have tried using cfsetting with the attribute:
    enablecfoutputonly="yes", but still the result is the same.
    Any idea or lead in the right direction would be greatly
    appreciated.

    The XML that the DB returns, looks like this:
    <?xml version="1.0"?>
    <rowset>
    <row>
    <column_name>value</column_name>
    <column_name>value</column_name>
    </row>
    </rowset>
    After playing with code for a while now, I believe that the
    problem is not with the returned XML.
    The page that runs the SP is the page that call the SP. What
    means that the white-spaces are the code that the Coldfusion engine
    has already processed (although, the condition that checks whether
    the form variable that Ajax request, exist. Is the first thing on
    the page). to my understanding, the returned XML should be at the
    top of the page.
    I hope that I was clear enough.
    Thank you.

  • InDesign 2.0: White Space Around Pages Disappeared

    I'm having a really frustrating issue with a document I've been creating in the same way for years. I usually use the whitespace around the pages in InDesign 2.0 to work on my graphics, but this morning I accidentally hit some mysterious shortcut that made the white space (and all my graphics) disappear (the are is now grey) I've been searching and searching the help section and the internet for a solution, but I'm stumped and running way behind on this project. Anyone know how to get that white space back? Thanks.

    Look at the last tool in the toolbox. This toggles between normal mode viewing the pasteboard, guides and other stuff,
    and the preview mode. As Dave says, the keyboard shortcut into and out of preview (which you obviously hit) is W, but if
    you use the toolbox button you will also be able to select a preview showing the bleed area and slug area as well.
    k

  • White spaces under images...

    Ok... I am still working on my site, have loaded the browsers
    and am having a browser issue which I can't seem to figure out. I
    have the page on a test site at
    http://www.babybumps.net/testsite/index2.shtml
    The problem is that in Safari and Mozilla there is a small
    white line under each of my images that have a "editable region"
    tag on them. I can't seem to figure out what I should be doing to
    correct the issue. Any suggestions? The code is attached.
    Also, does anyone see any other issues that I may not be
    noticing? I want to make sure that the code on this page is really
    tight and clean before I move on as it is the basis for the
    majority of the site.
    Thanks so much for all of your help. I have been struggling
    to muddle through and learn CSS and SSI with a book and the
    internet over the couple of months. I'm hoping that my questions
    don't make me seem like to much of an amateur. ;)

    > Any other suggestions?
    Why don't you try and comment on the suggestions you have
    already been
    given? Is there something about them you don't understand?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "ArtsyAndi" <[email protected]> wrote in
    message
    news:fvdanc$5gs$[email protected]..
    >I will do some research on that.
    >
    > Any other suggestions? Any advice is appreciated. Is
    what I am doing good?
    > bad? totally the wrong way to go about it? on the right
    track?
    >
    > Feelings will not be hurt as long as comments are
    productive. :)
    >

  • Why is there extra white space on below the navigation bar?

    I am running Nightly 6.0a1, and for the past few days, there has been extra white space under the Navigation Toolbar, as though there is an extra empty toolbar. The only toolbar I have is the Navigation Toolbar. BTW, this happens w/ tabs on top and bottom. Here's a screenshot: [http://i1004.photobucket.com/albums/af162/cg2916/extraspace.png http://i1004.photobucket.com/albums/af162/cg2916/extraspace.png]

    Do you see any toolbars listed in "Nightly > Options" that are visible but do have a check mark?
    See also:
    * http://kb.mozillazine.org/Corrupt_localstore.rdf
    Did you try a new profile?

  • White spaces b.w regions... how to fix them...?

    Hi,
    I've created few regions on a page... I am hiding/showing couple of them based on the selection from a radio group...
    my issue is that, for some odd reason I am getting additional white spaces for some of the selections (and not for all of them)...
    I've saved a sample on APEX.ORACLE.COM as follows for your review and comments
    Workspace: tparvaiz
    Username: [email protected]
    Password: tparvaiz
    Application: 28899     Default Date and White Space
    Appliaction Page No: 24
    ID/PW: TEST/TEST
    Thanks

    You are using dynamic actions to hide items rather than the regions containing them. This leaves elements of the region visible as extra space. Also the choice of region template may not be appropriate and include elements that generate extra space (the Button Region without Title template doen't seem right for the Proj_Order region as this doesn't contain any buttons). Use a browser with a web inspector tool (Safari, Chrome, or Firefox+Firebug) to find the elements generating the unwanted space.
    Either:
    <li>Change the DAs to hide the regions as a whole rather than the individual items (use static region IDs to provide DA selectors).
    <li>Retain the DAs that operate at item level, but use fewer regions, e.g. move the items into a single region.
    As Re: Image rollover, you may be using too many separate regions. This isn't wrong (in many ways its a good thing) but there should be good reasons for doing so, and you should take advantage of there being separate regions by working with regions as whole. Also consider using subregions to group related regions.
    A clearer naming convention for Dynamic Actions would also be a good idea: the current ones give no clue to what they do.

  • How to remove the white space of oam file?

    I have done the oam in Adobe Edge Animate, when i insert it into Adobe Dreamweaver,
    it turn into this:
    There is a white space under the oam file.
    How to get rid of it??
    I'm a design student without any much of knowledge of coding >< Please help me.

    When you insert the oam file, I assume it gets inserted as <object> tag.
         <object height="X" width="Y" ....  style="display:block"   ... ></object>
    Add the bold text to the object tag as shown above.
    hth,
    Vivekuma

  • White spaces in Firefox

    The following html file plays well in IE, Safari, Opera and
    Chrome. When it plays in Firefox there is a 5 pixel white space
    under the video, and the sides of the frame are split by white
    spaces on the top and bottom. Why is this happening? Is there a way
    to fix it?
    The best solution I have found is to make the graphics to the
    side 5 pixels taller (keeping the video size the same). Then the
    sides don't split in Firefox, but I get white space above and below
    the video in all internet browsers, so it's not a good solution. I
    can put the Flash video in a layer above the graphics, but its
    position shifts up or down according to which browser is used.
    Thanks for your time and help!
    http://www.bigvid.net/FirefoxTest/TestThis.html

    Thank you! I am new to coding so it took me a little time to
    realize that you meant for me to put
    <style>td embed {
    display: block;
    </style> just after the title in the code. Thank you
    for your help! It works now.

  • Skipping the white space

    How do I stop Adobe X reader from skipping the white space between pages? Or at least stop making it jump between pages. It's driving me mad.
    Please don't say "you'll get use to it." If there's no way to fix it I'll just uninstall and go back to 9.
    Thank you for your time.

    Try clicking view --> Page Display and check Enable Scrolling and Show gaps between pages

  • White space at the bottom of product pages

    I set the template and everything in the module layout...the catalogue pages look good but when you click on any product and go to the large product view page there is a white space on the bottom under the footer ? Dolce & Gabbana - Black w. Silver
    thats a link to a product on the site ...
    any help on where or how id go around removing it ...i tired many things already and its annoying
    Made with business catalyst and muse

    I checked the link to product you provided and as I see the issue you facing is :
    As you mentioned you created the site In muse, Could you please check and make sure the sticky footer option is unchecked, if not try unchecking the same and publish the site again and see if that helps.

  • How to remove the white space that is now above the main images on each page?

    http://www.nydogworks.net
    Hello,
    I took over updating some things on my site from my web designer. The main images on each page used to be flush with the navigation bar on each page. Now there is a white space in between each one. Can you tell me how to remove the white space?
    <div id="container">
    <div id="imgholder"><img src="images/feature-aboutus.jpg" width="951" height="341" alt="" />
    </div>
    <div id="pageContentNoside">
       <div id="sideSub">
         <form action="form.php" method="post" name="form2" id="form2"> <table width="250" border="0" cellpadding="2" cellspacing="2">
           <tr>
             <td width="273"><h2>Quick Contact</h2></td>
             </tr>
           <tr>
             <td class="mainContent">Your Name</td>
             </tr>
           <tr>
             <td><span class="style9">
               <input name="forname" type="text" class="colorfieldssmall" id="forname" size="20" />
               </span></td>
             </tr>
           <tr>
             <td class="mainContent">Your Email Address* (required)</td>
             </tr>
           <tr>
             <td><span class="style7 style9">
               <input name="admail" type="text" class="colorfieldssmall" id="admail" size="25" />
               </span></td>
             </tr>
           <tr>
             <td class="mainContent">Phone Number</td>
             </tr>
           <tr>
             <td><span class="style7 style9">
               <input name="phone" type="text" class="colorfieldssmall" id="phone" />
               </span></td>
             </tr>
           <tr>
             <td><span class="mainContent">Type of Dog Training</span></td>
             </tr>
           <tr>
             <td class="mainContent"><span class="style9">
               <select name="need" class="colorfieldssmall" id="need">
                 <option value="select one">select one</option>
                 <option value="Basic Obedience">Basic Obedience</option>
                 <option value="Behavior Therapy">Behavior Therapy</option>
                 <option value="Board and Train">Board and Train</option>
                 <option value="Off Leash Training">Off Leash Training</option>
                 <option value="Puppy Training">Puppy Training</option>
                 </select>
               </span></td>
             </tr>
           <tr>
             <td> </td>
             </tr>
           <tr>
             <td><div align="left">
               <input type="submit" name="submit" id="submit"  value="Submit" />
               </div>
               </td>
             </tr>
           </table></form>
         <h2><br />
           Dog Training Services<br />
           </h2>
         <ul id="subnav">
           <li><a href="basic-obedience.html">Basic Obedience</a></li>
           <li><a href="dog-behavior-therapy.html">Behavior Therapy</a></li>
           <li><a href="board-and-train-dog-program.html">Board & Train Program</a></li>
           <li><a href="off-leash-training.html">Off Leash Training</a></li>
           <li><a href="puppy-training-program.html">Puppy Training</a></li>
           </ul>
         <br />
         <br />
         <br />
         </div>
      <div id="suggestPost"><a href="https://www.facebook.com/pages/NYDogWorks/219268038151244?fref=ts" ></a></div>
       <div id="mainContent">
         <h1 class="copyrightType">About NY DogWorks</h1><br />
         <h2> <span class="testimonal">The Owner of NYDogWorks</span>      </h2>
         <p><span class="copyrightType"><img src="images/dogpic.jpg" alt="Dog Behavior Therapy" width="183" height="275" class="h_img_float_right" /></span><strong>NYDogWorks L.L.C. is owned and operated by Master Certified Dog Trainer and Behavior Specialist Brian DeMartino. </strong><br />
           <br />
           His training is hands down the best out there. He has become one of the most sought after dog trainers throughout Long Island, Manhattan, &amp; New York.<br />
           <br />
           With over 15 years experience training and rehabilitating some of the toughest cases of dog behaviors. He’s Mastered the Art of teaching top knotch obedience and manners with outstanding results and has developed the most full proof and guaranteed system to fully housebreak any puppy or dog in the shortest amount of time.<br />
           <br />
           He is Certified in dog training and dog behavior and is an Official Evaluator for the American Kennel Club’s (C.G.C) Program.<br />
           <br />
           <br />
           <strong>All About NYDogWorks</strong><br />
           </p>
      <p><br />
      </p>
         <p>NYDogWorks Dog Education, is a Professional Dog Training Company offering dog training for puppies and older dogs through customized in-home training programs by Master Certified Trainers in Nassau County, Suffolk County, Hamptons, Long Island, Manhattan, Brooklyn, Bronx, Queens, Rockland County, Westchester County, Orange County, and Bergen County New Jersey. NYDogWorks offers obedience training, Housebreaking, Manners, socialization for your dog,  Puppy Training and Education, Behavior Therapy, Trick Training, Agility, Complete Off Leash Training, Sport Work, and Personal Protection Training. <br />
           <br />
           <strong><br />
             NYDogWorks Boarding &amp; Training Programs</strong><br />
           </p>
      <p><br />
        We offer boarding and training programs done in the home of owner, Brian DeMartino. This is a customized 2-6 week program to suit your dog's needs, great for someone who feels they do not have the time or patience to train or rehabilitate their dog at their home. This is a 100% guaranteed program. Your dog will stay with us for no additional charge if we feel that he or she has not learned all that was agreed upon. We guarantee that if there is any regression within 3 months of your dog being back home with you, he/she will come back to us for no additional charge.<br />
        <br />
        <a href="board-and-train-dog-program.html">View Boarding &amp; Training Programs</a></p>
         <p><br />
           </p>
         <p><br />
           <br />
      </div>
       <div id="breadCrumbs">
         <p><a href="index.html">Home</a> &gt;  NY DogWorks - About Certified Dog Trainer Brian DeMartino<br />
           <strong>Serving all of Long Island, Nassau &amp; Suffolk County, Manhattan, Brooklyn &amp; Queens</strong></p>
         </div>
    </div>
        <div id="footer">
          <div id="footermenu">
          <div id="footermenu1">
          </div>
        </div>
       <div class="phoneNumber" id="copyright"> Copyright © 2014  NY DogWorks</div>
         <div class="websiteDesign" id="sitedesigner">Long Island Website Design by <a href="http://www.wetribet.com" title="Wet Ribet" target="_blank" class="medlink">Wet Ribet</a>     </div>
    </div>
    </div>

    You should be able to add the following snippets of css to your stylesheet to fix that.
    In the mainstyle.css file, change...
    #imgholder {
    width: 950px;
    margin-top: 0px;
    padding: 0px;
    margin-right: auto;
    margin-left: auto;
    to
    #imgholder {
    width: 950px;
    margin-top: 0px;
    padding: 0px;
    margin-right: auto;
    margin-left: auto;
    overflow:hidden;

  • How do you get rid of white space when you are printing multiple pages to one sheet of paper?

    How do you get rid of extra white space when you are printing multiple pages to one sheet of paper?  When printing multiple pages to one sheet of paper Acrobat won't let you select the "zoom" for printing.
    Thanks

    Take a look at Quite Imposing.

Maybe you are looking for