Form element doesn't match design view

I just tried the new forms in Muse.
After styling and moving the formfields around they don't stay where I put them in design view.
See attached images from
designview, preview and after publishing (to BC) in Chrome. (IE9 looks the same)

Hi ePocket,
It looks like you've found a bug that we missed, I've added it to our database.
It seems to be caused by the use of a System Font in the submit button. To get around this, use a font that is not in the System font category.
Sorry for the inconvenience

Similar Messages

  • Why cant DW CS5.5 show html5's new elements in the wysiwyg design view?

    Why cant DW CS5.5 show html5's new elements in the wysiwyg design view?
    I created a <section> and an <aside> in code view, and styled those elements in my CSS, but it doesnt show anything in design view!
    why not?
    Its annoying.
    CS5.5 is Adobe's spring 2011 release.
    Why is it not up to speed??
    Isnt html5 very 2009-2010ish?
    Is there an add-on i can install?
    thanks.

    Well we are all "getting up to speed" with HTML5 because, as it stands, it is still not a standard.
    As to styling in CS4 vs CS5.5, Dreamweaver is an engine that assists in making good HTML code. It's agnostic. If you don't close your tags properly in CS 5.5 and then open the same document in CS4, it will notice that you did not close your tags properly.
    Adobe makes plugins that will allow CS4 to do code hinting properly with HTML5 selectors and CSS3, assuming the document is peroperly defined as an HTML5 document.
    Here is the beginning of one of my most recent HTML5 documents:
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Page Title Goes Here</title>
    <link href="css/normal.css" rel="stylesheet" type="text/css" media="all">
    <link href="css/navigation.css" rel="stylesheet" type="text/css" media="all">
    <!-- include CSS before the Shiv -->
    <!--[if lt IE 9]>
    <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    This works.

  • Why has my form suddenly disappeared from design view?

    My form has just disappeared from 'design view' but if i hit 'live view' it re-appears, the code is all there i just cant view it?

    Ness_quick wrote:
    My form has just disappeared from 'design view' but if i hit 'live view' it re-appears, the code is all there i just cant view it?
    Its because your table code is broken. I had a job this morning wading through it so I eventually selected just the from part - <form>    </form> - which I believe is intact and dumped it in another DW file.
    If you can't find the broken or missing tag/s can I suggest you do this and rebuild the outer table.

  • JSF design view - visual components are shrinking

    Hello,
    I have some strange issue while using Design view for JSF and data binding.
    Once I drop any data control elements into visual component (panel, etc) my visual components are shrinking to such size, that I cannot distinguish any elements within design view. I cannot use design view since then and have to place all elements base on structure panel.
    How to reproduce:
    1. Create new JSF page with wizard and accept defaults.
    2. Drop one of the panels (panel box, panel group layout) into JSF layout
    At this stage my visual elements occupy 100% of design view screen and represent anticipated outcome
    3. Drag and drop one of the data control elements (data control panel) into created panels on JSF and create table or form
    Immediately after it visual panel where data control was dropped shrinks to approximately 1/4 of the screen and I cannot see neither available space nor created table for my data components.
    I figured out, that if I remove created by wizard default <af:messages> tag from the top of my JSF, then design view representation fixes. Not sure if I should remove <af:messages> from all my pages.
    Above all looks to me as and bug.
    Environment:
    -Jdeveloper 11g
    -Windows Vista 64b
    -Not bundled JDK 6

    Hi Shay,
    Thank you for response.
    1. I tried to play with screen size without result
    2. I checked your video post, but this does not resolve my issue
    3. This issue occures with all JSF pages and can be reproduced even when following official Oracle step by step tutorials.
    4. I figured out, that removing <af:messages> tag resolves the issue ?! It seems this tag is added by default during drag and drop binding.
    5. On this link http://drop.io/jdev_001 you can see how design view is changes with and without <af:messages> tag
    6. Below is code example from one of the tutorials, that leads to shrinking as well:
    7. Once app is deployed and running page get normal view in IE as expected, so it seems to me, it is issue with Jdev design view, probably influenced by my environment, if nobody reported it before.
    Thank you for your help.
    ===========================================================================
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <f:view>
    <af:document id="d1">
    <af:messages id="m1"/>
    <af:form id="f1">
    <af:panelStretchLayout id="psl1">
    <f:facet name="center">
    <!-- id="af_one_column_stretched" -->
    <af:decorativeBox theme="dark" id="db1">
    <f:facet name="center">
    <af:decorativeBox theme="medium" id="db2">
    <f:facet name="center">
    <af:panelFormLayout id="pfl1">
    <af:inputText value="#{bindings.p_name.inputValue}" label="#{bindings.p_name.hints.label}"
    required="#{bindings.p_name.hints.mandatory}" columns="#{bindings.p_name.hints.displayWidth}"
    maximumLength="#{bindings.p_name.hints.precision}" shortDesc="#{bindings.p_name.hints.tooltip}" id="it1">
    <f:validator binding="#{bindings.p_name.validator}"/>
    </af:inputText>
    <af:commandButton actionListener="#{bindings.getEmployeesFindByName.execute}" text="getEmployeesFindByName"
    disabled="#{!bindings.getEmployeesFindByName.enabled}" id="cb1"/>
    <af:panelFormLayout id="pfl2">
    <af:inputText value="#{bindings.commissionPct.inputValue}" label="#{bindings.commissionPct.hints.label}"
    required="#{bindings.commissionPct.hints.mandatory}" columns="#{bindings.commissionPct.hints.displayWidth}"
    maximumLength="#{bindings.commissionPct.hints.precision}" shortDesc="#{bindings.commissionPct.hints.tooltip}"
    id="it4">
    <f:validator binding="#{bindings.commissionPct.validator}"/>
    <af:convertNumber groupingUsed="false" pattern="#{bindings.commissionPct.format}"/>
    </af:inputText>
    <af:inputText value="#{bindings.email.inputValue}" label="#{bindings.email.hints.label}"
    required="#{bindings.email.hints.mandatory}" columns="#{bindings.email.hints.displayWidth}"
    maximumLength="#{bindings.email.hints.precision}" shortDesc="#{bindings.email.hints.tooltip}" id="it7">
    <f:validator binding="#{bindings.email.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.employeeId.inputValue}" label="#{bindings.employeeId.hints.label}"
    required="#{bindings.employeeId.hints.mandatory}" columns="#{bindings.employeeId.hints.displayWidth}"
    maximumLength="#{bindings.employeeId.hints.precision}" shortDesc="#{bindings.employeeId.hints.tooltip}"
    id="it6">
    <f:validator binding="#{bindings.employeeId.validator}"/>
    <af:convertNumber groupingUsed="false" pattern="#{bindings.employeeId.format}"/>
    </af:inputText>
    <af:inputText value="#{bindings.firstName.inputValue}" label="#{bindings.firstName.hints.label}"
    required="#{bindings.firstName.hints.mandatory}" columns="#{bindings.firstName.hints.displayWidth}"
    maximumLength="#{bindings.firstName.hints.precision}" shortDesc="#{bindings.firstName.hints.tooltip}" id="it3">
    <f:validator binding="#{bindings.firstName.validator}"/>
    </af:inputText>
    <af:inputDate value="#{bindings.hireDate.inputValue}" label="#{bindings.hireDate.hints.label}"
    required="#{bindings.hireDate.hints.mandatory}" shortDesc="#{bindings.hireDate.hints.tooltip}" id="id1">
    <f:validator binding="#{bindings.hireDate.validator}"/>
    <af:convertDateTime pattern="#{bindings.hireDate.format}"/>
    </af:inputDate>
    <af:inputText value="#{bindings.jobId.inputValue}" label="#{bindings.jobId.hints.label}"
    required="#{bindings.jobId.hints.mandatory}" columns="#{bindings.jobId.hints.displayWidth}"
    maximumLength="#{bindings.jobId.hints.precision}" shortDesc="#{bindings.jobId.hints.tooltip}" id="it2">
    <f:validator binding="#{bindings.jobId.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.lastName.inputValue}" label="#{bindings.lastName.hints.label}"
    required="#{bindings.lastName.hints.mandatory}" columns="#{bindings.lastName.hints.displayWidth}"
    maximumLength="#{bindings.lastName.hints.precision}" shortDesc="#{bindings.lastName.hints.tooltip}" id="it8">
    <f:validator binding="#{bindings.lastName.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.phoneNumber.inputValue}" label="#{bindings.phoneNumber.hints.label}"
    required="#{bindings.phoneNumber.hints.mandatory}" columns="#{bindings.phoneNumber.hints.displayWidth}"
    maximumLength="#{bindings.phoneNumber.hints.precision}" shortDesc="#{bindings.phoneNumber.hints.tooltip}"
    id="it9">
    <f:validator binding="#{bindings.phoneNumber.validator}"/>
    </af:inputText>
    <af:inputText value="#{bindings.salary.inputValue}" label="#{bindings.salary.hints.label}"
    required="#{bindings.salary.hints.mandatory}" columns="#{bindings.salary.hints.displayWidth}"
    maximumLength="#{bindings.salary.hints.precision}" shortDesc="#{bindings.salary.hints.tooltip}" id="it5">
    <f:validator binding="#{bindings.salary.validator}"/>
    <af:convertNumber groupingUsed="false" pattern="#{bindings.salary.format}"/>
    </af:inputText>
    <f:facet name="footer">
    <af:panelGroupLayout layout="vertical" id="pgl1">
    <af:panelGroupLayout layout="horizontal" id="pgl2">
    <af:commandButton actionListener="#{bindings.First.execute}" text="First" disabled="#{!bindings.First.enabled}"
    partialSubmit="true" id="cb2"/>
    <af:commandButton actionListener="#{bindings.Previous.execute}" text="Previous" disabled="#{!bindings.Previous.enabled}"
    partialSubmit="true" id="cb3"/>
    <af:commandButton actionListener="#{bindings.Next.execute}" text="Next" disabled="#{!bindings.Next.enabled}"
    partialSubmit="true" id="cb4"/>
    <af:commandButton actionListener="#{bindings.Last.execute}" text="Last" disabled="#{!bindings.Last.enabled}"
    partialSubmit="true" id="cb6"/>
    </af:panelGroupLayout>
    <af:commandButton text="Save" id="cb5" actionListener="#{bindings.mergeDepartments.execute}"
    disabled="#{!bindings.mergeDepartments.enabled}" action="browse"/>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelFormLayout>
    </af:panelFormLayout>
    </f:facet>
    </af:decorativeBox>
    </f:facet>
    </af:decorativeBox>
    </f:facet>
    </af:panelStretchLayout>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    Edited by: user555411 on May 2, 2010 2:08 PM

  • VB code not showing in Design View

    I am working with a form that has VB code for validation and need to style it with CSS. The problem is the form is not visible in Design View. The code is there, the page renders and works fine in a browser but has anyone seen this issue before? I have a similar form that uses C# and it shows up fine in Design view.
    the page is here:  http://www.housing.ucsb.edu/digiknow/digiknow_form.aspx

    Display problems are most often caused by malformed code or an imbalance in opening and closing <div> tags.  Try validating your code and fix reported errors.
               Code Validation Tools
              CSS - http://jigsaw.w3.org/css-validator/
              HTML - http://validator.w3.org/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • PayPal buttons inside table scramble Design View in DW CS5.5

    I developed my web site using Dreamweaver 8:
    http://www.harmonize.com/hatleymusic/classic.html
    As  you see, I have PayPal buttons inside table cells.  I did this using  Design View, putting the insertion point in the table cell, going to  code view, and pasting the PayPal button code at the insertion point.   This all worked fine.
    I just upgraded to DW CS5.5. and now  when I try to use the same procedure, the Design View image gets  scrambled  after I paste the button code in code view.  The table format  is no longer in place, and I can no longer see where the cells of the  table are.  However, when I go to Live View, everything looks fine  including the table and the buttons.
    Can anyone tell me  how to overcome this problem?  As it stands, I cannot use DW to work on  my web site, which is a major problem for me.
    Thanks.

    How do I get someone to respond to my question here?
    Let me try again.
    With DW CS5.5 when I try to insert a PayPal button into a table (which I always did with DW8) the table in Design View gets scrambled, making it unusable.  Please would one of you out there who is much more knowledgeable about DW than me try it and see if there is a solution?  If you create a new HTML page in Design view, create a table in it, place the insertion point inside one of the table cells, go to the code view and locate the insertion point there, then paste the PayPal button code at that point. Here's the code:
    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="XSXQ9CUMUVLQC">
    <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
    Now go back to Design view and see how it looks.  If it acts the way it does for me, the table is no longer visible, but if you go to Live View everything looks fine with the table and the button inside it.  Of course, I can't design in Live View.
    PLEASE can someone out there help me.
    Many thanks.

  • Design view for jsp custom tags.

    when we drag-and-drop custom tag control in the source of jsp page, when we switch to the design view of jsp we should be able to view controls as desired.
    Observation: 1) Eclipse 3.2 doesn't have design view for jsp pages.
    2) which software uses the design view. we need to extend eclipse core framework and we do not find any technical approach document to proceed further on this.
    3) RAD 6.0 we can see a JSP in design view.
    I'm searching for any technical approach document to create plugin that can intercept the custom tags and provide a design view.
    Will any one suggest the plugin for that.

    Jeff,
    I have checked with engineering and found that JSP Design View support on
    Linux is a planned feature for the next release. I don't think we will have
    this feature as part of a Service Pack for 8.1
    Regards,
    Raj Alagumalai
    WebLogic Workshop Support
    "Jeff Cassanvoa" <[email protected]> wrote in message
    news:3f4df04e$[email protected]..
    >
    Raj,
    Thanks for the information!! Any timeframe when it might be supportedon Linux
    Thanks,
    Jeff
    "Raj Alagumalai" <[email protected]> wrote:
    Jess,
    Unfortunately, the JSP design view is currently not supported on Linux.
    Workshop does allow to do remote development where the IDE is running
    on a
    Windows machine and connects to a server running on Linux/Solaris.
    Regards,
    Raj Alagumalai
    WebLogic Workshop Support
    "Jeff Cassanova" <[email protected]> wrote in message
    news:[email protected]..
    Does anybody else who is running the Linux version of Workshop 8.1have
    troubling
    getting the Design View of JSP files to come up. All I see is thesource,
    with
    no tabs at the bottom to switch to/from the Design View. When I bootover
    to
    Windows and run 8.1 Workshop, I see both tabs and I am able to useboth
    views.
    Is it something I have set in Preferences somewhere that disablesthe
    Design
    View ???
    Thanks,
    Jeff

  • Invisible text in design view, how do I make it visible?

    I cant figure out why the text in Dreamweaver is invisible,
    though I can highlight it still, and see it fine in code view. I
    cant make it visible in design view. I dont see css attached to the
    text itself, only to the block, and other site elements, but
    something in css is causing the text to be hidden and I dont know
    how to make it visible. Anybody know what I should be editing or
    looking to edit?
    Thanks ahead of time.

    It sounds like a containing element may have display:none,
    and that is
    altered by JavaScript in the browser. DW Design View does not
    run
    JavaScript, so you won't see elements like that in Design
    View.
    If this is the case, and you are running CS3 (I think?) or
    later, go to
    Preferences > Invisible Elements and make sure
    display:none elements are
    turned on. This will show an icon in Design View that you
    can
    right-click and use Element View > Full (shortcut is to
    double-click) on
    to temporarily see that element. Use Element View > Hidden
    (or F5) to
    revert to the default view.
    You can also override display:none in a Design-time Style
    Sheet if you
    want to always see that/those elements.
    HTH,
    Randy
    > no, the text color is different and is definded in css
    file...and the browser
    > displays the text as defined, its the dreamweaver that
    makes it totally
    > invisible. I tried changing all "hidden" elements in css
    file to "visible" but
    > that didnt do it.

  • Supports Design View in Linux ?

    Hi All,
    am new to Flex and am using ubuntu os(Linux) . I have
    downloaded and installed Flex Builder alpha version for Linux and i
    read that Linux doesn't support Design View and some other views
    for Flex Builder from the following
    URL:
    http://labs.adobe.com/technologies/flex/flexbuilder_linux/releasenotes.html#features
    If so, what is the solution to get Design view or i need to
    download any other plug-ins?
    Thanks in Advance

    Adobe Newsbot hopes that the following resources helps you.
    NewsBot is experimental and any feedback (reply to this post) on
    its utility will be appreciated:
    Adobe Labs - Adobe Flex Builder Linux Public Alpha:
    Please download alpha 4. Welcome to the Adobe Flex Builder
    Linux alpha on Adobe Labs. Flex Builder Linux is a plugin-only
    version of the Flex Builder
    Link:
    http://labs.adobe.com/technologies/flex/flexbuilder_linux/
    Adobe Labs: Flex Builder Linux Alpha 4 Released on Labs:
    Aug 13, 2008 ... Flex Builder for Linux is an Eclipse plugin
    version of the software that you can use to build Flex applications
    on Linux. See the release
    Link:
    http://weblogs.macromedia.com/labs/archives/2008/08/flex_builder_li_2.html
    Adobe Labs - Downloads: Adobe Flex Builder Linux:
    For a list of the features currently included in the alpha
    release, ... Flex Builder Linux Eclipse Plugin Installer. This
    download provides the Flex Builder
    Link:
    http://labs.adobe.com/downloads/flexbuilder_linux.html
    Adobe Labs: Flex Builder Linux Alpha 2 Released on Labs:
    The second prerelease of Adobe Flex Builder Linux, an Eclipse
    plugin version of ... Flex applications on Linux, is now available
    for download on Adobe Labs.
    Link:
    http://weblogs.macromedia.com/labs/archives/2007/12/flex_builder_li_1.html
    Adobe Labs - Adobe Flex Builder Linux Alpha Release Notes:
    Flex Builder Linux is a plugin-only version of the Flex
    Builder that you can use to .... Your use of the Adobe Labs
    including the download of software,
    Link:
    http://labs.adobe.com/technologies/flex/flexbuilder_linux/releasenotes.html
    Adobe - Flex Builder for Linux:
    Aug 13, 2008 ... I'm using Flex Builder 3 for Linux, and my
    debugger keeps detaching .... >>Please download the Flash
    player latest version of debug plugin
    Link:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=657&threadid =1318352&enterthread=y
    Disclaimer: This response is generated automatically by the
    Adobe NewsBot based on Adobe
    Community
    Engine.

  • Command Button colors corrupt after switching back and forth from design view.

    I would say my experience level with Access is "getting there."
    I therefore don't thing I'm making a newbish mistake.
    Has anyone else noticed this?  As it's bugging me quite badly.
    1.  A command button has had it's color formatted (pressed, hover, etc. nothing fancy)
    2.  It works fine.
    3.  In my navigation form, if I switch to design view, then select a given sub-form... like "customers" - and switch back out of design view, to form view - then without fail, all customized command buttons within that sub forms' color will 'corrupt'
    ie, change.
    4. Closing and reopening the navigation form (ie, my main menu) restores it, but the same thing will happen should I go back to design view for the sub form.
    5.  Finally - this behaviour does not happen when switching back and forth between views on the original form that isn't a sub form in the navigation form.  (Ie,. the main 'customers' form). 
    Can any clever folk give me a solution? :(
    Thanks,  
    Eric Rowlands
    EDIT - My apologies, I am using Access 2013 for a desktop database.

    1) We will need to understand whether the issue is seen on any sample database.
    2) IS this seen only on your system, we would need to check on other system also
    3) If the issue is seen in all system & issue is not seen in the sample database then this could be database specific issue
    4) As per my understanding the issue is consistent, we would need to find what is the VBA code or which code is used while designing this form.
    5) We would need to see if the issue is seen only on that particular navigation form?
    6) Is the button gets corrupt I mean to say non-usable once it get discolored ?
    7) What is your end goal just in case if you are able to work on your database i.e. when working on the navigation form without going in design view is issue still seen there ?
    8) Since when are you experiencing this issue ?
    9) If possible please provide me the environment details of your system & Access application, whether the issue is seen only in access 2010 can we check in access 2007 or in access 2013.
    I would really appreciate if you can answers the above questions this will really help us to isolate the issue further
    in terms of technical troubleshooting after answering the above question I might come up with another question so that we can do extensive isolating the issue so the if required we can involve the developer also.

  • Qt creator seg fualt when entering design view

    I created a qt quick ui project and I get a segmentation fault whenever I enter design view.
    My log file:
    http://pastebin.com/71vLBVNK
    anyone know how to get around this bug?

    qtcreator still crashes on me as soon as I open or create a C++ Gui (Widget) project and click on any .ui files which AFIK is supposed to load the Form editor. Checked the Design view in a dummy QML project and it seems to work fine. Have tried this with several projects to no avail. Reinstalled package several times. Running kde-unstable but qt/qtcreator are from extra/community.
    qt 4.7.3-3
    qtcreator 2.2.1-3
    To reproduce, just create a  new Qt Widget -> Qt Gui Application and click on the mainwindow.ui file. Is anyone else getting this?
    Should I add new report/topic or is it likely these two things are related?
    EDIT: The same actually happens when I go to Tools-Options-Designer. No need to even open up a project.
    Last edited by dinsdale (2011-07-18 18:58:59)

  • CS3 Design View And Invisible Elements

    Hello, CS3 Dreamweaver often doesn't shown hidden divs. I
    have an
    absolutely positioned div and it seems the only way to see it
    in design
    view is to go to code view select the div and switch back to
    design view
    and with luck it will appear. View - Visual Aids - Invisible
    Elements is
    checked. Are there any settings I have missed or are
    invisible elements
    buggy in design view?
    Thanks,
    Chris (Hunt)

    DW's Design view (in any version of DW) will not show
    elements with the
    visibility:hidden attribute enabled unless you select the
    element. An easy
    way to do that would be to select it in the AP ELEMENTS
    panel. Have you
    tried that?
    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
    ==================
    "Chris (Hunt)" <[email protected]>
    wrote in message
    news:g70q5f$kpl$[email protected]..
    > Hello, CS3 Dreamweaver often doesn't shown hidden divs.
    I have an
    > absolutely positioned div and it seems the only way to
    see it in design
    > view is to go to code view select the div and switch
    back to design view
    > and with luck it will appear. View - Visual Aids -
    Invisible Elements is
    > checked. Are there any settings I have missed or are
    invisible elements
    > buggy in design view?
    >
    > Thanks,
    >
    > Chris (Hunt)

  • Sometimes Cannot Select Elements in Design view of Dreamweaver

    Hello,
    From time to time, i have trouble selecting elements in the design view.
    Sometimes it works right away. Sometimes I need to click 6-10 times, and sometimes it just doesn't work ( a larger all encompassing element stays selected and no matter how much i click, there is no change )
    I originally thought it was a bug, but I expected it to be fixed by now.
    This also seems arbitrary, perhaps someone here know why it's happening and how to avoid it.
    Thanks
    Peter

    You probably have a CSS overflow:hidden property applied to one or more divisions for float containment.  Switch to Split View.  Or turn off CSS styles in Design View:  View > Style Rendering > untick Display Styles.
    Or you can comment out /**overflow:hidden **/ until you're ready to Preview.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Dreamweaver CC automatically deletes code in code view and elements in design view

    When I open a file in Dreamweaver, it automatically shows a * next to the filename - showing it has been edited.
    Then often when I select some code in code view, or an element in design view (such as a table, an image, some text) it is suddenly deleted.
    The problem is especially bad (happens without fail) if I am switching between programs. But also happens when I'm not switching.
    I do not have this problem on a different user account.
    I have reinstalled Dreamweaver three times now. Also renamed preference and configuration folders. Tried with a wired mouse and keyboard. Nothing has worked.
    I can't think what I did to cause this. I installed MAMP recently - but have uninstalled it correctly I think.
    I had an issue with one file in which there were about 30 Spry collapsible panels. I kept getting this warning:
    "A script in file Macintosh HD:Applications:Adobe Dreamweaver CC:Configuration:Shared:Spry:DesignTime:EditingUtils.js has been running for a long time. Do you want to continue?"
    I have to click 'yes' many times to get into the file, and the warning keeps coming up while the file is open.
    However, my big issue of DW CC deleting code and elements happens whether or not this particular file is open.
    So this may have nothing to do with it.
    Any ideas anyone?
    Adobe's customer service has not helped. In fact, I have not even been able to get through to anyone on the phone - having waited literally hours listening to music, and getting shunted from person to person. And then their promised 'call backs' never happen.
    Thanks,
    - Greg

    I do not have this problem on a different user account.
    You've got a bad/corrupted user account.  Create a new one with Admin level priveleges and delete your old user.
    Nancy O.

  • Access 2010 on 64 Bit Windows 7 Access "Not Responding" when changing from forms view to design view and back

    I am running
    Windows 7 64 bit
    Access 2010 32 bit
    Developing an application with a split FE BE with both files local but continue to have the message "Not Responding" when switching from forms view to design view and back as well as if I try to connect to a subform or object on the sub form.

    I have seen this behavior when the form's RecordSource is a complex query such as a crosstab or a query with several nested queries. To test if this is your case, remove the RecordSource and see if the form starts acting normal again.
    Then again, if the form has several subforms they might be slowing up the loading time.
    Bill Mosca
    www.thatlldoit.com
    http://tech.groups.yahoo.com/group/MS_Access_Professionals

Maybe you are looking for

  • Creation of sales order using IDOC

    Hello All, PO is created in a website,which comes to SAP as a Idoc.Sales order need to be created with this idoc information. We are extending ORDERS05, since we are in need to add z segment as a child segment of E1EDKA1 to hold 3 email addresses. Co

  • Is there a global setting to turn off black border on swfs?

    Hi there I started this question in the Framemaker forum as I assumed it was a Framemaker issue.. see: FM12 Imported Captivate 8 files, how do I get rid of the black border? but it seems to be an Acrobat thing, so am trying here as I've not used Acro

  • Announcing my web site

    Hi everyone, New on the block. Learning fast. I updated my web site and published it than tried to announce it. But a message comes up about a default web address. I got this email from a friend: Anyone help me out? Hi Guy, Unrelated to skydiving, wh

  • N80 - Equivalent of PC Suite to iMac OSx 10.5.2...

    My N80 has PC Suite downloaded onto phone and ex PC. N80 and PC communicated succesfully. Trying to download Mac software via iMac to N80 produces System Error message on N80. Any help? Thanks

  • Lightroom cc will not start

    I had a hard time with the installation but now lightroom  cc won't start!