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.

Similar Messages

  • Unable to insert table in design view???

    Im using Dreamweaver MX 6.0, been using it for a while
    trouble free. Recently installed it on my new Vista laptop, install
    went fine, program opens fine. I was in design view today, tried to
    insert a table and was initially getting some weird error message,
    but the table WAS created. After a few minutes I went to make a
    change and the program crashed. Started Dreamweaver again, tried to
    insert a table and nothing happens. I can click the insert table
    button, try Insert >>> Table, and nothing happens, no
    error message, nothing.
    If I manually enter the code to create a table, I AM able to
    do that, and I can edit it in design view, such as splitting a
    cell, etc.. Anyone have any ideas? Thanks.
    -Joey

    > The build is 6.0.1714.0
    ANN: 6.1 Updater on build 1714
    Macromedia has been working with our customers to track down
    the source
    of problems a minority of users have been having with the ...
    Dreamweaver MX
    6.1 updater. Several users reported that the updater
    incorrectly indicates
    that it cannot find the Dreamweaver
    application or executable file in the specified folder and
    doesn't perform
    the update. While researching this, we found that there were
    several
    different causes for similar issues. Those solutions are all
    detailed in the
    technote at:
    http://www.macromedia.com/support/dreamweaver/ts/documents/dmx_updater_issues.htm.
    However, we also noticed that many customers were trying to
    update a build
    of Dreamweaver MX, 1714, that was never legally released to
    the public or
    made available for purchase. The release version of
    Dreamweaver MX 6.0 is
    build 1722, and build 1714 was only released to a small group
    of beta
    testers under a non-disclosure agreement. Beta testers
    received the final
    build of Dreamweaver MX at the completion of the beta
    program.
    Because build 1714 is not a commercial release, it cannot be
    updated and
    should not be used for any purpose as it is not a legally
    licensed version
    of Dreamweaver MX. To purchase a copy of Macromedia
    Dreamweaver MX, visit
    our online store at:
    http://dynamic.macromedia.com/bin/MM/store/US/home.jsp
    Thanks to all customers who provided detailed information
    that enabled us to
    track down the installer issues much more quickly than we
    could without your
    help.
    Matt Brown Dreamweaver and Contribute Community Manager
    Sorry I can't help more than that.
    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
    ==================
    "Joey_330ci" <[email protected]> wrote in
    message
    news:[email protected]...
    > Version 6.0.1714.0 Thanks!

  • Table in design view not displaying properly

    I put in a table at 100% width - to house a spry menu.  It shows up fine in all browsers and in live mode, but in dreamweaver design view the table and menu display off to the right - outside of the workspace. It's a pain!  How do I fix this?

    You certainly do NOT need a table to hold your menu -- no matter which one you use.
    Table layouts went the way of the dinosaur last century.  Nowadays, we use CSS for layouts.  To illustrate, copy & paste this code into a new, blank document and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Document</title>
    <style>
        /**fixes the box model**/
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    /**basic layout**/
    body {
        width: 80%; /**adjust width in px, em or % as desired**/
        margin:0 auto; /**with width, this is centered**/
        background: maroon;
        font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
        font-size: 100%;
    header, footer { color: #FFF; }
    /**left sidebar**/
    aside {
        display:table-cell;
        width: 25%;
        padding: 1%;
        background: #C99;
    /**main content**/
    article {
        width: 75%;
        display:table-cell;
        padding: 2%;
        border-left: 1px dotted silver;
        background: #EAEAEA;
    footer {
        clear: left;
        font-size: 80%;
        text-align: center;
    /* BEGIN HORIZONTAL DROP-MENU */
    nav {
        position: relative;
        width: 100%;  /**adjust width as needed**/
        margin: 0 auto;
        padding: 0;
        text-align: center;
        z-index: 1000;
    nav ul {
        margin: 0;
        padding: 0
    nav li {
        list-style: none;
        font-size: 12px;
        float: left;
        text-align: center;
    /**top level menu**/
    nav li a {
        display: block;
        text-decoration: none;
        margin-right: 2px;   /* space between links */
        width: 12em;   /* adjust as needed or use auto */
        padding: 6px 15px;
        font-weight: bold;
        line-height: 2em;
        color: #1e5799;
        border: 1px solid #FFF;
        background: #C7D5E3;
    /**top menu style on mouse over**/
    nav li:hover > a {
        color: #FFF;
        background: #1e5799;
    /**sub-menu**/
    nav li ul {
        display: none;
        text-align: center;
        margin: 0;
        padding: 0 1em;
        background: #C7D5E3;
        font-weight: normal;
        font-style: oblique;
    /**sub-menu, help for older IE**/
    nav li:hover ul, nav li.hover ul {
        display: block;
        position: absolute;
        padding: 0;
    nav li:hover li, nav li.hover li { float: none; }
    /**drop-menu style**/
    nav li:hover li a, nav li.hover li a {
        width: 12em;  /* adjust width as needed or use auto */
        margin-top: 0;
        line-height: 1.25em;
        font-weight: normal;
        border: none;
    /**drop-menu style on mouse over**/
    nav li li a:hover {
        background: #D3E1B7;
        color: #004A43;
    /**clear floats**/
    nav:after {
        clear: both;
        display: block;
        content: '';
    /**END DROP MENU STYLES**/
    </style>
    </head>
    <body>
    <header>
    <h1>Your Awesome Site Name</h1>
    <h2>Some Pithy Slogan</h2>
    </header>
    <nav>
    <ul>
    <li><a href="#">Menu Item1 &#9660;</a>
        <ul>
        <li><a href="#">Sub_menu1a</a> </li>
        <li><a href="#">Sub_menu1b</a> </li>
        </ul>
    </li>
    <li><a href="#">Menu Item2 &#9660;</a>
        <ul>
        <li><a href="#">Sub_menu2a</a> </li>
        <li><a href="#">Sub_menu2b</a> </li>
        <li><a href="#">Sub_menu2c</a> </li>
        <li><a href="#">Sub_menu2d</a> </li>
        </ul>
    </li>
    <li><a href="#">Menu Item3</a></li>
    <li><a href="#">Menu Item4</a></li>
    <li><a href="#">Menu Item5</a></li>
    </ul>
    </nav>
    <aside>
    <h3>Left Sidebar</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus. </p>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. </p>
    </aside>
    <article>
    <h3>Aritcle Heading</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </article>
    <footer>
    <small>© 2015 Your Site Name. All rights reserved.</small>
    </footer>
    </body>
    </html>
    Nancy O.

  • Unable to create Tables in design view

    One of the two problems I am having (the other will also be
    posted) is that I am no longer able to use Design View to Insert
    Tables at all - I get the following error message: (I made a
    printscreen of the error but not sure how to embed the picture in
    this post so here is the message verbatim).
    "While executing objectTag, the following JavaScript error(s)
    occured:
    At line 26 of file "Macintosh HD:Applications:Macromedia
    Dreaweaver 8:Configuration
    bjects:Common:Table.htm":
    Type Error: cmdDOM.parentWindow.createTableStr is not a
    function"
    I can create tables only if I type the html for them by hand
    into the code pane. The file that the error message references does
    exist, and appears to look fine (code-wise). I've also tried
    uninstalling and reinstalling DW8, removing and recreating the
    Configuration Folder as well as the site prefs and site definitions
    - nothing has cured this problem.
    I am using DW8 v. 8.0.2 on a Mac Quad G5 running OS X 10.4.6.
    I am positive that I did not have this problem, or any of the other
    current problems, with DW MX , and I installed DW8 as a stand-alone
    app so that I could still use MX if needed. This and the other
    problems don't occur with MX but I would really like to get them
    solved because 8 offers other benefits that I want to be able to
    use.
    I'm wondering if anyone else has had this problem and managed
    to find a fix for it.

    One of the two problems I am having (the other will also be
    posted) is that I am no longer able to use Design View to Insert
    Tables at all - I get the following error message: (I made a
    printscreen of the error but not sure how to embed the picture in
    this post so here is the message verbatim).
    "While executing objectTag, the following JavaScript error(s)
    occured:
    At line 26 of file "Macintosh HD:Applications:Macromedia
    Dreaweaver 8:Configuration
    bjects:Common:Table.htm":
    Type Error: cmdDOM.parentWindow.createTableStr is not a
    function"
    I can create tables only if I type the html for them by hand
    into the code pane. The file that the error message references does
    exist, and appears to look fine (code-wise). I've also tried
    uninstalling and reinstalling DW8, removing and recreating the
    Configuration Folder as well as the site prefs and site definitions
    - nothing has cured this problem.
    I am using DW8 v. 8.0.2 on a Mac Quad G5 running OS X 10.4.6.
    I am positive that I did not have this problem, or any of the other
    current problems, with DW MX , and I installed DW8 as a stand-alone
    app so that I could still use MX if needed. This and the other
    problems don't occur with MX but I would really like to get them
    solved because 8 offers other benefits that I want to be able to
    use.
    I'm wondering if anyone else has had this problem and managed
    to find a fix for it.

  • Scrambled design view

    Hello,
    every time I open a design view in a jsp/jsf page in JDeveloper 11.1.1.3.0 it gets "scrambled". The whole GUI goes wild and I don't see my page components in my designer view properly. I am using Ubuntu 10.10 as my OS. I thought it was desktop effects and compiz causing this but it's the same with no desktop effects. Is there any workaround a part from switching back to MS?
    All other parts of IDE are working normally, this is the only thing that's going wild.
    Edited by: skunk.oi on Feb 10, 2011 7:01 AM

    are you getting the fields and nested containers looking like squares?? - if so, this very rarely happens now... sometimes going into the project preferences and removing the ADF Faces libs and then reattaching them solved the problem...worth a try..

  • Design view broken in CS5

    In the last week or so, Design view in CS5 has become completely broken for me.
    I usually use Code View, but sometimes it's handy to switch to Design view or Split view, which are now always grayed out.
    I had installed the HTML 5 pack, not sure if that would cause the issue or not.  I completely removed it, but the other views are still grayed out.

    Long shot:
    -> Dreamweaver menu
    -> Preferences
    -> File Types / Editors
    What file types are listed in "Open in Code View"?
    I believe file types listed there open with Design & Split View disabled.
    Alternatively, try deleting your personal config folder and let DW re-build it.
    Locating your personal configuration folder
    http://forums.adobe.com/thread/494812

  • Display HTML 5 code in Design View in DW CS5 (was: HTML 5)

    Even if I can write code in my old version of Dreamweaver it still
    doesn't show up in Design mode. I tried to make rounded corners and I
    couldn't figure out why it didn't work. Then I checked in a browser -
    and Voila!
    Is there a way to update DWCS5 so that would work?
    Best regards,
    Camilla Osterman

    Have a look at the last reply here Dreamweaver HTML5 taglibrary extension released.
    This may also help HTML5 Extension in Dreamweaver CS5 Tutorial

  • Table borders in Dreamweaver cs4 design view too big, I would like to have a single line for tables

    Hi All,
    I design email templates using only tables but the design view options in cs4 only provide a huge 3px border in order to display the tables. In older versions of macromedia etc the table view is only 1px wide which makes designing a whole lot easier.
    When I add tables within tables it adds more spacing and looks way off and it also looks off in browsers, causing me to have to increase and decrease padding sure this is no way to create table even if they have no borders and the table width is already fixed?
    I have tried turning borders off in visual aids but there is no option to have just a single line to demonstrate a border!!
    I can't work like this, can anybody help me or is this just the way borders are displayed in cs4 for the pc???

    Hi Guys, thanks for getting back to me.
    the problem is purely about design view display and not about coding.
    Below is how CS4 displays borders with two lines which I find difficult to decipher:
    Then below is Macromedia DM 8 and this how I want the borders to look, with single lines to display the tables.
    This may just be the way Abobe have decided to display tables in design view and there may not be any option to change it but if you know any way to change it I would be most greatful.
    Thanks again.
    G

  • Paypal button for jquery mobile app in DW CS5.5

    Using the jquery mobile app framework in DW CS5.5 and need help in using Paypal mobile.
    <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
      <input type="hidden" name="cmd" value="_xclick" />
      <input type="hidden" name="bn" value="webassist.dreamweaver.4_5_0" />
      <input type="hidden" name="business" value="[email protected]" />
      <input type="hidden" name="item_name" value="Odor Cat" />
      <input type="hidden" name="amount" value="19.50" />
      <input type="hidden" name="currency_code" value="USD" />
      <input type="hidden" name="shipping" value="5.50" />
      <input type="hidden" name="return" value="http://www.mysite.com/checkout_success.php" />
      <input type="hidden" name="cancel_return" value="http://www.mysite.com/checkout_failure.php" />
      <input type="hidden" name="undefined_quantity" value="1" />
      <input type="hidden" name="receiver_email" value="@hotmail.com" />
      <input type="hidden" name="mrb" value="R-3WH47588B4505740X" />
      <input type="hidden" name="pal" value="ANNSXSLJLYR2A" />
      <input type="hidden" name="no_shipping" value="0" />
      <input type="hidden" name="no_note" value="0" />
      <input type="submit" name="submit1" id="submit1" value="Pay with PayPal">
               </form>
    This form button will take the user to paypal for payment, but is not for mobile app.
    thanks for your help,
    -Jim Balthrop

    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.

  • Inserting tabbed navigation code makes my web page not display in design view..

    Hi everyone..
    I am on Dreamweaver 8 for MAC, and was working on a couple of web pages..these pages included divs and tables. But when I tried inserting a tabbed navigation I found at:
    http://www.dynamicdrive.com/dynamicindex17/tabcontent.htm
    In a nutshell, it asked me for step 1 to:
    Step 1: Insert the        below CSS and script into the HEAD section of your page:
    <link rel="stylesheet" type="text/css" href="tabcontent.css" />
    <script type="text/javascript" src="tabcontent.js">
    * Tab Content script v2.2- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
    </script>
    The next step was this:
    Step 2: Finally, simply add the below      HTML to where you wish the Tab Content to appear on the page:
    <h3>Demo #1- Basic implementation</h3>
    <ul id="countrytabs" class="shadetabs">
    <li><a href="#" rel="country1" class="selected">Tab 1</a></li>
    <li><a href="#" rel="country2">Tab 2</a></li>
    <li><a href="#" rel="country3">Tab 3</a></li>
    <li><a href="#" rel="country4">Tab 4</a></li>
    <li><a href="http://www.dynamicdrive.com">Dynamic Drive</a></li>
    </ul>
    <div style="border:1px solid gray; width:450px; margin-bottom: 1em; padding: 10px">
    <div id="country1" class="tabcontent">
    Tab content 1 here<br />Tab content 1 here<br />
    </div>
    <div id="country2" class="tabcontent">
    Tab content 2 here<br />Tab content 2 here<br />
    </div>
    <div id="country3" class="tabcontent">
    Tab content 3 here<br />Tab content 3 here<br />
    </div>
    <div id="country4" class="tabcontent">
    Tab content 4 here<br />Tab content 4 here<br />
    </div>
    </div>
    <script type="text/javascript">
    var countries=new ddtabcontent("countrytabs")
    countries.setpersist(true)
    countries.setselectedClassTarget("link") //"link" or "linkparent"
    countries.init()
    </script>
    <p><a href="javascript:countries.cycleit('prev')" style="margin-right: 25px; text-decoration:none">Back</a> <a href="javascript: countries.expandit(3)">Click here to select last tab</a> <a href="javascript:countries.cycleit('next')" style="margin-left: 25px; text-decoration:none">Forward</a></p>
    <hr />
    Well, I did all the steps required, but when I put this inside a div I had inside a table, all of a sudden I couldnt see anything in my design view, only two tables that arent even the same size..When I take out all this code, I get back my regular page..Can I see this tabbed navigation in my design view? Unfortunately, I dont have the spry widgets since I am on Dreamweaver 8..If I preview it in both Safari and Firefox (on Mac Firefox/3.0.8) (Safari 3.2.1) I can see everything fine, including the tabbed navigation..But designing in code isnt really helpful because I want to see what it looks like in design view, in case we change things-its just easier for me to work on..So I assume there is something in this code that is making my design view show nothing..
    Update:I tried taking out the code again, but this time, I couldnt see anything again, even without this code..
    I know that I can go to validation website, and I got a lot of errors-but all the pages I have that are in the same style have those same errors too—and they display fine..its only when I insert this specific piece of code that everything goes haywire..Is it even possible to view tabbed navigations (like the one in the above link) inside of Dreamweaver Design View?
    Any help would be appreciated..

    DW8 doesn't render any dynamic content, so I'd say it's a no go. You'll just have to live with that limitation or upgrade to CS4...
    Mylenium

  • DW-CS3 / Split/Design View grayed out

    In Dreamweaver CS3 (9.0.3453), when starting a new site, only
    the CODE preview button is available - Split/Design views are
    grayed out.
    Also, everything in the submenu under View > Visual Aids
    is also gray
    Also, Refresh Design View is gray.
    I'm a visual kinda guy, and haven't been able to find a fix
    via Google.
    NOTE: Everything was ok when first loading, then blew out.
    Haven't been able to fix, and reinstalling doesn't work (I use Revo
    Uninstaller to totally remove, so as to get a clean install -
    nothing)
    Many thanx for any help.
    - LouisCat

    I think it is probably the type of document you are creating,
    for example if
    you go to open a javascript or xml or css document, it goes
    to code and
    grays out the disign and split views. So you might be opening
    the wrong type
    of document.
    Gary
    "LouisCat" <[email protected]> wrote in
    message
    news:gbcucp$t6k$[email protected]..
    > In Dreamweaver CS3 (9.0.3453), when starting a new site,
    only the CODE
    > preview
    > button is available - Split/Design views are grayed out.
    >
    > Also, everything in the submenu under View > Visual
    Aids is also gray
    > Also, Refresh Design View is gray.
    >
    > I'm a visual kinda guy, and haven't been able to find a
    fix via Google.
    >
    > NOTE: Everything was ok when first loading, then blew
    out. Haven't been
    > able
    > to fix, and reinstalling doesn't work (I use Revo
    Uninstaller to totally
    > remove, so as to get a clean install - nothing)
    >
    > Many thanx for any help.
    >
    > - LouisCat
    >

  • DW Split View - Design View

    When working in DW in Split View, when the user clicks into
    the Design View window the view automatically updates the view if
    code view has changed.
    Can i intercept this? Does it call a specific file or menu
    command that i would have access to?
    The reason:
    We use DW as a stand alone HTML editor and some of the files
    we work with are extremely large and each time a change is made in
    code view and tusers click into design view it auto updates the
    deisgn view and this could end up taking some time. i would like to
    manually control this if possible?
    Thanks

    I think it is probably the type of document you are creating,
    for example if
    you go to open a javascript or xml or css document, it goes
    to code and
    grays out the disign and split views. So you might be opening
    the wrong type
    of document.
    Gary
    "LouisCat" <[email protected]> wrote in
    message
    news:gbcucp$t6k$[email protected]..
    > In Dreamweaver CS3 (9.0.3453), when starting a new site,
    only the CODE
    > preview
    > button is available - Split/Design views are grayed out.
    >
    > Also, everything in the submenu under View > Visual
    Aids is also gray
    > Also, Refresh Design View is gray.
    >
    > I'm a visual kinda guy, and haven't been able to find a
    fix via Google.
    >
    > NOTE: Everything was ok when first loading, then blew
    out. Haven't been
    > able
    > to fix, and reinstalling doesn't work (I use Revo
    Uninstaller to totally
    > remove, so as to get a clean install - nothing)
    >
    > Many thanx for any help.
    >
    > - LouisCat
    >

  • Design view not displaying but code view is ok

    Hi Everyone,
    my design view in dreamweaver cs5.5 is not displaying anything but all the code is there and my page online is working fine http://www.exclusivewindowtint.com.au/car-window-tinting.html
    How can i fix this as easy as possible? this is only happening to this one page on my website.
    Thank You
    George

    I have to second  Murray on this.
    I will go a step further and say ignoring errors on your site because someone else's site has some is extremely poor advice, especially considering the volume of people visiting this forum alone with a random display problems that are solved by simply correcting the errors found in the validators.
    Restoring from a backup may work this time, but why did it work? That's where validation, and understanding what the validator is telling you, pays off. You somehow inadvertantly mangled your table code, will that ever happen again? What happens if your backup also has the same mangled code next time?
    Some validation errors are never going to affect display and can be completely ignored from a "how does this affect my design" point of view, like missing an alt attribute on an image for instance. Others, like missing or improperly nested html elements, can kill your design in browsers or rendering engines that can't handle major errors (like most versions of IE or DW's Design View) while everything looks fine in a browser better programmed to handle problems (like Chrome or Firefox).
    Bottom line is, the validators are extremely useful tools, do not ignore the  error report unless you understand which errors can be ignored.

  • PayPal buttons showing through Slide Show

    Hi,
    I can't figure out how to get the PayPal buttons not to show when you click on the Slide show. And, I can't even disable the Slide show! Any ideas? Thanks.

    You must be putting the paypal buttons inside the photo placeholder.
    Go to the "photos" inspector "slideshow" page and uncheck the "enable slideshow" box.

  • Web Page Text Disappearing in Design View

    Hi,
    I'm using Dreamweaver 8, and I am loading the page of an
    existing web page into Dreamweaver (page was coded in notepad, not
    in Dreamweaver). The web page uses CSS and is full of text. Problem
    is, I cannot see any of the text that is in a table while in design
    view.
    The tables in design view look like they are compressed
    together, and the site in design view doesn't resemble the actual
    page at all.
    I can see the text on the webpage in code view, and when I
    preview the page in IE or Firefox, the text is there - however in
    Design view it disappears!
    I have tried Expanded Tables Mode too, but no luck.
    Any suggestions? Is there some setting I need to adjust, to
    see the text on this page while in design view?
    Thanks!
    N~

    Are you on a Mac?
    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
    ==================
    "millweaver" <[email protected]> wrote in
    message
    news:fahuqj$im2$[email protected]..
    > Hi Murray,
    >
    > Tried the zoom level, but no luck.
    >
    > Any other insights or thoughts?
    >
    > Thanks!
    >
    > N~
    >
    >
    >
    >
    quote:
    Originally posted by:
    Newsgroup User
    > Try setting the zoom level to 99% or 101% and see if
    that helps.
    >
    > --
    > 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
    > ==================
    >
    >
    >

Maybe you are looking for

  • No Contacts with isync on my N73 using usb

    hi, i have got a problem with my N73(Firmware 4.0750.31.2.1) and my iMac (10.5.2). When i use isync to update my calendar and contacts, only the data from the ical is being transfert to my phone but not the contacts. I,m using the original USB cable

  • How do you activate the new ipod touch if it won't let you create an apple id?

    I just bought 2 brand new iPod touch 32 GB products for my kids and can not create an apple id for them to be able to facetime, text message....etc? There are no instructions or real specific info from apple? I mean you have to have a email address t

  • Crystal 2008 - Changing Paper Trays

    I am building a report using Crystal 2008.  I need to have page one print to one paper tray and the subsequent pages print to another paper tray using the same printer.  I have not been able to find an option to modify the paper tray or paper source

  • OSB 11g - list Proxy services with enabled tracing

    Hello. I went through OSB API and haven't found out a way, how to by script (Java or WLST): - list Proxy service with enabled 'Execution Tracing' - enabled and disable 'Execution Tracing' Is there a way, how to do this by script somehow? I know, how

  • How to delete audio backups? OSX 10.9.4

    Hi. I'm using OSX 10.9.4. My 500 GB hard drive is getting full, so I moved my entire ITunes music library (160 GB) to an external hard drive, and then moved the iTunes Media folder to the trash, and deleted it on my Mac. The moved files are playing f