How to remove whitespace in deamweaver in design view?

m having this issue which is driving me crazy. when am looking at my code in design view in Dreamweaver, there is a space below my nav bar like this..... I do not understand how to get rid it?
but it doent show in live view or the browser..... Edit fiddle - JSFiddle

Don't expect much from Design view, it's merely a vague approximation.
Trust your Browser preview.

Similar Messages

  • How to I get to the STandard Design view Mode

    Don't have a manual and trying to find out how to switch
    modes to standard design view instead of layout mode?

    > I have dreamweaver
    > 3
    dw3 doesn't have a "Layout Mode" That was introduced with Dw4
    AFAIK.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • JDeveloper 10.1.3.2.0 - How to see content of showDetailItem in Design View

    Hello,
    I am new to use the JDeveloper to create JSF Applications and I learn with the tutorials.
    So I have a question:
    I want to find out: How to see the content of the second or third showOneTab component in the WYSIWYG Design View of a page.jspx?
    For example, I am orientating the tutorial: "Introduction to ADF Faces/Trinidad Using JDeveloper" (http://www.oracle.com/technology/obe/obe1013jdev/10131/trinidad/adf_faces_trinidad.htm)
    Page: table.jspx
    There is the showOneTab "Single Row Select" and "Multi Row Select" and I see only the content of "Single Row Select".
    How can I see the content the table2 of "Multi Row Select".
    I have created the table of "Single Row Select" and can see only this one.
    The download of that example show me in the View of structur the component table2, but not in DesignView.
    Can you help me?
    best regards
    Joachim

    Hello Frank,
    many thanks for your answer. It try it and it works!
    For completion, I think the argument "disclosed" of the component "af:ShowDetailItem" with "default" setting is "false".
    So if I will editing one tab in WYSIWYG editor, I set only this tab disclosed = true.
    All others to "false". When my edit is completed, I set only the first tab to "true" and all other "false", because I want to start with the first tab by first request.
    I look again into the "help". Hopefull in answer:
    Which effect has this argument by deployment?
    There is only the desciption: "whether or not to disclose the children This attribute is not supported on the following agent types: pda, phone, voice."
    I think this is for me irrelevant. My application have to support only a client like a personal computer.
    Which effect has this argument by deployment?
    Or is this only for the WYSIWYG editor?
    Joachim

  • How to add multiple presets to responsive design view without having to resize the screen each time

    I want to be able to add multiple screen size presets to the responsive design view capability but don't want to have to resize the screen and add each one individually via the custom preset function.
    Have seen that some posts on the internet (http://g-liu.com/blog/2013/08/firefox-rdm-presets/) that say this can be done but cannot find where the config is held in ver 26.0?

    You can also do the opposite and create custom settings in the responsive design mode window.
    You can hold down the Shift key and drag the borders via the (right border, bottom border, bottom right corner) resize icons to get specific dimensions and give the current custom setting a name to add them as a preset.
    This will add the preset to the devtools.responsiveUI.presets pref.
    See also my post here for a bookmarklet.
    *[[/questions/957590]]
    You can paste the current value of the pref in the prompt to see a list of currently defined presets.<br />
    You can add a new preset by entering the width,height,name values in the prompt.<br />
    Copy the new preset list to the pref.
    <pre><nowiki>javascript:(function(){
    function rdObj(w,h,n){with(this){key=w+"x"+h;if(n)name=n;width=w;height=h;}}
    rdObj.prototype={key:"",name:"",width:"",height:""};
    var n={},p='<width>x<height> <name> OR width,height,name',rd=[];
    while(p!=null){
    p=prompt(p,JSON.stringify(rd));
    if(/^(\d{3,4})[,x](\d{3,4})([, ](.+))?$/.test(p)){
    n=new rdObj(RegExp.$1,RegExp.$2,RegExp.$4);rd.push(n);
    }else{try{rd=JSON.parse(p);}catch(e){}}
    }})()</nowiki></pre>

  • How  to show  php 'include' file in Design View?

    Is it possible (in design view MX04) to show a php include
    file?
    It shows if it's <?php include('myPage.inc'); ?>
    but if its got the .php ext, <?php include('myPage.php');
    ?>
    its doesnt show.
    Any way of making it show?
    Cheers.
    Os.

    > Is it possible (in design view MX04) to show a php
    include file?
    Yes.
    Does the include file *also* contain PHP code?
    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
    ==================
    "Osgood" <[email protected]> wrote in
    message
    news:e791va$css$[email protected]..
    > Is it possible (in design view MX04) to show a php
    include file?
    >
    > It shows if it's <?php include('myPage.inc'); ?>
    >
    > but if its got the .php ext, <?php
    include('myPage.php'); ?>
    >
    > its doesnt show.
    >
    > Any way of making it show?
    >
    >
    > Cheers.
    >
    > Os.
    >

  • Parsing CF tags - how to remove whitespace?

    I have an index.cfm in which I include additional CFM pages.
    index.cfm:
    </head>
    <cfinclude template="first.cfm">
    <cfinclude template="second.cfm">
    <cfinclude template="third.cfm">
    <cfinclude template="forth.cfm">
    <body>
    After executing the file:
    </head>
    <body>
    How can I remove these whitespace? For example first.cfm
    contains the following rows:
    <cfif isDefined("cookie.myCookie")>
    <cfif cookie.ZulzBeta neq "1234">
    <cflocation url="
    http://mypage">
    </cfif>
    </cfif>
    <cfif not isDefined("cookie.myCookie")>
    <cflocation url="
    http://mypage">
    </cfif>
    I know that using <cfscript> this problem won't happen
    but there are a lot of things that I'm not able to do with
    <cfscript>. What should I do?

    <cfprocessingdirective suppressWhiteSpace = "Yes">
    <cfinclude template="first.cfm">
    <cfinclude template="second.cfm">
    <cfinclude template="third.cfm">
    <cfinclude template="forth.cfm">
    <cfprocessingdirective suppressWhiteSpace = "No">
    <!--- Code for the rest of the page --->
    </cfprocessingdirective>
    </cfprocessingdirective>

  • How to removing whitespace in jsp

    hi,
    i am loading a jsp file, which had some space at the beginning. i want remove the space, then i need ot parse the data, just like ignoreWhiteSpace in xml. can anybody help on this.
    thanks
    ayathas

    Actually straight replacement will not work because it converts data to string because variables are expected.
    So there are at least two ways to deal with it:
    1. You can create a fake (unused) variable in JSP that prepends URL query - this way all the chars before will not interfere with reading variable:
      fake=fake&username=test&password=xxxxxxxx&result=true"
    2. In your complete handler you can read variables in a loop and hold them in a separate object:
    function completeHandler(e:Event):void
         var varObject:Object = {};
         for (var prop:String in e.target.data)
              trace(prop.replace(/^\W+/, ""), e.target.data[prop]);
              varObject[prop.replace(/^\W+/, "")] = e.target.data[prop];
         trace(varObject.password);

  • How to center page in Split and Design view?

    When I look at my template in Design or Split View, it is flush right on my screen with a top margin of 20 px or so. But when I check it in Live View, or when I preview it on Firefox/Safari/Chrome/Opera, it is centered and flush against the top of the screen.
    I should add that the template was fine in Design and split, until I started mucking about the a spry menu. My page fell apart, I deleted the spry with plans ot start over. But then I discovered my template flush right (in Design and Split, anyway).
    Can anyone please tell me how to correct this? I suppose it's more of a nuisance than a tragedy, as long as the page is centered when it goes online. But it is a nuisance to work on the right side of the screen.
    Coding follows:
        margin-top: 0px;
        margin-left: 0px;
    #wrapper {
        background-image: url(../template%20images/mainBody.jpg);
        background-repeat: repeat;
        overflow: hidden;
        width: 800px;
        background-color: #CCC;
        margin-right: auto;
        margin-left: auto;
    #wrapper #header {
        height: 150px;
        width: 800px;
        background-color: #CCC;
        background-image: url(../template%20images/header.jpg);
    #wrapper #navBar {
        height: 55px;
        width: 800px;
        background-color: #666;
        background-image: url(../template%20images/navBar.jpg);
    #wrapper #mainBody {
        width: 80%;
        margin: 0 auto;
        padding-top: 20px;
        font-family: Arial, Helvetica, sans-serif;
    #wrapper #footer {
        background-image: url(../template%20images/footer.jpg);
        width: 800px;
        height: 60px;
        text-align: center;
        font-size: 16pt;
        clear: both;
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>2000_template</title>
    <!-- TemplateEndEditable -->
    <link href="../CSS/layout.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    -->
    </style>
    </head>
    <body>
    <div id="wrapper">
    <div id="header">
    </div><!--close header-->
    <div id="navBar">
      </div><!--close navBar-->
    <div id="mainBody"><!--begin mainBody--><!-- TemplateBeginEditable name="mainContent" -->
      <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam dolor libero, aliquam vitae scelerisque in, malesuada non neque. </p>
      <p>Phasellus dignissim arcu eget velit posuere vel varius magna dapibus. Phasellus pharetra imperdiet nunc, vel interdum dolor fermentum id. Integer luctus mollis tempor. Nunc lacus urna, blandit sollicitudin cursus at, ultrices et erat. Sed rhoncus, ipsum vitae dictum scelerisque, diam felis euismod augue, a facilisis massa augue ut nibh. </p>
      <p>Sed ac ante magna. Nulla consequat posuere ullamcorper. In interdum, elit sed tempor suscipit, quam mauris egestas justo, sed lobortis sem magna a mi. Etiam tincidunt fringilla sapien, congue condimentum augue adipiscing ut. Nam pretium egestas lacus in elementum. Vivamus eros erat, varius nec aliquam quis, congue at orci.</p>
    <p>Vivamus eget felis purus, in porta tellus. Nullam ac orci eu arcu luctus ornare. Aliquam quis ligula metus. Morbi congue cursus justo, et sagittis sem adipiscing blandit. </p>
    <p>Quisque sed bibendum nisi. Curabitur ultrices imperdiet lacus in ullamcorper. Etiam pulvinar magna et neque congue eu aliquam metus semper. </p>
    <!-- TemplateEndEditable --></div>
    <!--close main body-->
    <div id="footer"><!-- TemplateBeginEditable name="footerPage" -->
      <p> &#8249; &#8249; Previous    1 :: 2 :: 3 :: 4    Continue &#8250; &#8250;</p>
    <!-- TemplateEndEditable --></div><!--close footer-->
    </div><!--close wrapper-->
    </body>
    </html>

    Get rid of this.
        margin-top: 0px;
        margin-left: 0px;
    The universal selector (asterisk) applies whatever styles you give it to  EVERY PAGE ELEMENT regardless of where it is.  So unless you know  exactly what you're doing, don't use universal selectors.
    To center your page
    body {
    width:900px /**some width in pixels, ems or %}
    margin:0 auto;
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How to hide the lightbox container in design view?

    So I have just successfully inserted a lightbox into the page that I'm designing. It looks good and works well. The only problem now is the lightbox is covering up all of my other content.
    How do I hide the thing so that I can go about designing the rest of the page?

    Hi Aurora,
    When you select the lightbox, you'll see a little blue dot next to the lightbox with a white triangle inside. Click on that blue dot to open the on-object UI to see a bunch of configuration options. One of the options at the bottom will say "Show lightbox parts while editing". You can uncheck this option to hide the big lightbox so you can get to the other items on your page.
    -Sam

  • How to removed dashed lines from "Page Break View"?

    Hi,
    In Excel 2010, I found that once “Page Break View” is selected, there will be dashed lines across the view even after returning to “Normal” view. These dashed lines can be distracting.
    Is there a way to remove them?
    Bob

    Yes use
    File -> Options -> Advanced
    Scroll down to Display options for this worksheet and remove the tick in Show Page breaks.
    Unfortunately it's sheet specific so you'll have to do it everytime it happens until you've done all the sheets.
    Unless you develope some VB to do it for you,
    G North MCT

  • How to add addtitional pages in design view?

    How do I create additional pages in design view?  I have tried using NEW PAGE AFTER, but that doesnt add another page in design view, like I need. 
    I am creating a report that uses 8 subreports per page to dynamically create labels.  Currently I have a report header, and am using the page header to arrange the subreports so the top of each subreport prints on the top of each label.  The fields in the subreports can grow, and fill in the label from the top down. 
    I need to create a multiple pages using this format, but I dont know how to add more pages in design view.  Essentially I need subreports 1-8 on page 1, 9-16 on page 2, etc.  I would like to preserve the formatting I have created thus far, but I can always change it if I have to.

    In attempting to create the label sheets I needed, I ended up creating 14 separate reports (which report on 6 individual queries), because there are 14 pages worth of labels that need to be created.  What I wish to accomplish is to condense these 14 reports down to 6 reports.  One for each query.  What I absolutely cant find a way to do, is to get Crystal Reports to allow me to customize subreports on consecutive pages.  Again, I have 8 subreports on each page, which have been formatted to fit on 8 labels when printed.  Each subreport is identical in design, but has a different range selected (i.e. my driving value in each subreport has been modified with Select Expert to be between 1 and 5, or 6 and 10, or 11 and 15).  This is how I have been able to return 5 consecutive results on each label, with the next label returning the following 5 results. 
    My ultimate question:  Is it possible to create a multi-page report using this method?

  • How to remove Decimals in Quantity Objects in SAP BO Explorer View created on top SAP Bex Query?

    Hi,
    I created SAP BO Explorer report on top of SAP BEx Query.
    In SAP BEx Query, Decimals were hided but when i created OLAP Universe on top that SAP BEx Query and Created Index on top of Information Space in SAP BO Explorer and then created Exploration Views. But i'm getting Decimals in my Exploration Views where as SAP BEx Query in RSRT, no decimals were appearing.
    Can anyone suggest me how to remove decimals in SAP BO Exploration Views.

    Hi Ramana,
    I am not use how you connect to SAP BEx query (Via universe or BWA or HANA)
    What I could say is BWA and HANA, you cannot adjust this
    For universe, you could try in universe layer, there is note about this
    For BWA and HANA, this function might be enhanced but you 'd better raise OSS to SAP to check with them
    Best regards
    Alex yang

  • How Do I Change the Font Size in Design View?

    The font size when coding in Dreamweaver's "Design View" is
    too small. How do I change the size in "Design View" to make it
    bigger? I've found that you can change the code view in Preferences
    but it has no way to change the font size in Design View.
    P.S.--I'm using DW8

    Hi,
    By "a meeting notice", do you mean the Outlook meeting reminder? It's not possible to change the font in Calendar reminders. It's a system font.
    If I've misunderstood something, please feel free to let me know.
    Best Regards, 
    Steve Fan
    TechNet Community Support

  • How to Remove an Empty spca in Dropdown , data coming from R3

    Hi Frndz..
    There was a Dropdown in my view which is gettiing data from R3, but in the 1st place an Empty Space is coming but this is not the case in R3(in R3 there is no Space).
    Whenever am trying to get the value from that Empty Space is throwiing an Null Pointer Exception,can any one tell me how can i remove this Empty Space in my Dropdown.
    Thanks in Advance
    Rgards
    Rajesh

    Hi
    Thanks for ur prompt reply , in my case am getting the data from R3 to Portal View, suppose in dropdowm if i have 22 element in R3 , these 22 am getting but in addtion am gettiing an empty space in WDP View.
    Am concern to how to remove this empty spce in WDP View, this spcae is not there in R3
    Thnaks in Advance
    Regards
    Rajesh

  • TXT Files in Design View

    I use a lot of TXT files as INCLUDE files in various pages.
    When I used Dreamweaver 4 I had no problem editing a TXT file just
    like any HTML file and using DesignView. When I get going with
    Dreamweaver MX2004 I figured out how to do it. But I had to
    reinstall DW MX2004 and cannot get it to look at a TXT file in
    anything but CodeView - or call NotePad to edit it.
    I have already removed .txt from "OPEN IN CODE VIEW". I have
    tried going to MMDocumentTypes.xml and setting the Text type to
    HTML - which is what I thought I had used before. That didn't work.
    I've tried various combination of editing the Extensions.txt file,
    too - with and without the MMDocumentTypes.xml file.
    I know there is a way to do it - but cannot find the
    way!!

    I finally figured out how to work with TXT files in Design
    View...
    1. Go into MMDocumentTypes.xml and set the Text type to HTML
    2. in PREFERENCES Remove the .TXT type from OPEN IN CODEVIEW
    3. in PREFERENCES add the EXTENSION .txt and add Dreamweaver
    as the EDITOR
    The HTML in a TXT file shows up and is editable just as in an
    HTML document

Maybe you are looking for

  • Oracle 8.1.5 on red hat 6.1

    hi, i am trying to install oracle 8.1.5 on red hat 6.1, i entcountered the when i am trying to run runInstaller. initializing java virtual machine from /usr/local/jre/bin/jre please wait..... error in createOUIProcess(): -1 :permission denied. I have

  • White Screen of Death: o2 refurb still in contract - immediate replacement?

    Okay, so I have just got the dreaded white screen of death and have tried all the suggestions I've seen here: reset, forced reset, system reset - removed sim card and repeated but to no avail (phone works - can receive calls and connect to itunes oka

  • In report, there is a formula which shows either values or blank

    Hi,   In BW report, We have defined formula to calculate some SLA%. In the output of the report, SLA% shows either some value like 10% or 50% or blank.   But user wanted to see values and zero instead of blank. is it possible? if yes how, please expl

  • [solved] haskell-shake gives me error in pacman

    Hi, When I run pacman -S haskell-shake , then I receive: [xan@argonia ~]$ sudo pacman -S haskell-shake warning: haskell-shake-0.14.3-1 is up to date -- reinstalling resolving dependencies... looking for conflicting packages... Package (1) Old Version

  • No "Partition" tab in Disk Utility

    I want to partition my LaCie external HD, but my version of Disk Utility, in Yosemite, includes only "First Aid, Erase, Restore" tabs; no "Partition." How do I partition my external HD?