Accented characters copied into design view not converting in code mode?

Hello!
I just upgraded from Dreamweaver MX to CS6 (patched to v12.0.3) and am having a problem with French characters.  In the past, I copied text that contained accented characters like "é" and, when I pasted it into the Design window, I could see in the Code window that the accented characters would be converted into "& eacute;" (without the space) so that it would show up properly in all broswers.  This doesn't seem to be the case with CS6 - it is just pasting the "é".  This is a very large problem for me - does anyone know how I can restore whichever setting it is that will cause the paste function to work the same way it did in DW MX?
I've tried playing with the settings in Edit --> Preferences --> Code Rewriting and with New Document --> Default Encoding, but I guess I just haven't found the right combo to get it to work.
Any help would be appreciated!
Thanks,
-Cherie

If I understand it correctly, it doesn't.  I know that modern browsers would be able to understand the characters if it is encoded with UTF-8, but I need older browsers and adaptive technologies to be able to understand the accented characters, so I don't think I can go with UTF-8 yet.

Similar Messages

  • I only see "PHP" icons in Design View, not the executed code

    I have setup a new database installation and tested it - no problem.  I can open my webpage in Firefox, and the php code executes properly.  When I imported this site into Dreamweaver, I am unable to see the results of any executed PHP code, just "PHP" icons.
    Is it possible to view the results of the executed PHP code in Dreamweaver.   I'm not talking about complicated PHP code, just a bunch of 'echo' statements really.
    Thanks from a DreamWeaver newbie.

    I have moved your thread to the appropriate forum, Dreamweaver Application Development, which is where PHP-related issues should be discussed.
    In answer to your question, PHP is a server-side language that needs to be parsed (executed) through a web server capable of handling PHP code. In order to see the output of the PHP code, you need to set up a testing server. Instructions on how to do so can be found in this article in the Dreamweaver Developer Centre. Once you have set up a testing server, you can see the output of the PHP code in Design view by activating Live View (in Dreamweaver CS4) or Live Data view in earlier versions of Dreamweaver.

  • 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.

  • Why, since CS6 does DW now use ABSOLUTE image paths when dragging images into Design View from a folder in Finder?!

    While I am grateful the previous issue I had with not being able to drag files into design view at all (in CC and CC2014) was resolved.
    Guys (Adobe), seriously, if you're going to change the functioning of something that used to work just fine, at least supply a way for a user to revert to the old way... I absolutely loathe that I need a legacy version of DW to continue with my current workflow. Please put it back to the way it was, or at least allow a user to chose between the two behaviours.
    If there is a way to do this, without using the Site Manager (which still doesn't work from Finder even with relative to document selected), I would appreciate any guidance.
    As for using the Site Manager (before some smart guy suggests that I just use that) I do not wish to navigate to and create up to 20 "sites" a week and wait for DW to cache them all, when I am already in the folder with the image assets in Finder.
    Also before someone pipes up and says: "You shouldn't be diving sites in design view anyway", I don't... I develop many, many newsletters every week and the folder structure is such that navigation to the actual image folder using the Site Manager would be painful at best.
    I don't really like having to and replace all instances of "file:///Users/me/Work/company/Mailers/Year/wk14/mailer/dev/img/prod5.jpg". It is horrendously wasteful, time-wise.
    Thanks in advance for any helpful replies

    Sorry Murray, DW used to have an idea, my point is that since CS6 its developed a case of Amnesia.
    The "elements" are in the "root" folder as follows:
    newslettername.htm
    img
         imagename.jpg
    So the relative path would be <img src"img/imagename.jpg" />
    However since the change: <img src"file:///Users/me/work/Company/year/week/campaign/img/imagename.jpg" />
    Which is completely useless and needs to be corrected before I upload the html anywhere.
    As for using the site directory, I did answer that in my initial post. I use a laptop, I really don't want a site manager taking half my screen just so I can see the folder structure and navigate with that, especially since I am already at the files I need in Finder.
    Again, this is something that used to work just fine in previous iterations of DW, so I don't believe Adobe is incapable of fixing it nor am I being unreasonable asking for a choice for those that may find the local absolute paths useful in some way. All I want is to be able to chose not to use absolute paths when dragging from Finder.

  • Design view not working after importing project from Flex Builder

    After importing a project from Flex Builder to Flash Builder I am no longer able to see anything in the design view. I am using the flex 4.5 sdk.
    Any idea how I can get this design view working? I heard it could have something to do with the metadata directory but am slightly lost here?...
    Adam

    Could you please provide more information as to what exactly are you importing. Also does Design View not lauch at all or does it give errors. Would it be possible for you to share the logs.
    Meanwhile you can try cleaning the workspace and importing again to see if that solves the issue.

  • 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.

  • Design view not displaying

    Hi there
    I am very new to Dreamweaver working on an existing website.
    I have one page that is giving me problems.The web page itself is displaying just fine.
    In Dreamweaver, I am viewing with a split page, code on top and design on the bottom.
    The design page is not showing up. The code is there, the web page is there, its just I can't see anything in the design section, except the top and side headers which are fixed in place.
    If I switch to design only view, its the same.
    Every other page is fine - I can see code and design - its just this one.
    It's Dreamweaver 8.
    Thanks
    Jamie

    Ok I just found the advanced icons and now have ny double >> button. So I have pasted in text, highted it all and selected hopefully it is plain syntax highlighting.
    If you go to the webpage - http://unicredit.com.au/loans/home.html
    There is the heading “No Home Loan Set Up fees: til March31.”
    Then there is a bunch of copy and the circular pics start.
    All that copy in between the heading and the circular pics is not in my design view.
    ie my design view shows the heading “No Home Loan Set Up fees: til March31” and then the circular pics.
    The web page shows it all, the code view shows it all, it’s just the design view that doesn’t.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html><!-- InstanceBegin template="/Templates/generictemplate.dwt" codeOutsideHTMLIsLocked="false" -->
    <!-- DW6 -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <meta http-equiv="imagetoolbar" content="no">
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Unicredit / Loans / Home Loans </title>
    <!-- InstanceEndEditable -->
    <script language="JavaScript">
    <!--
    function NewWindowAD2() {
    var WindowAD2=window.open("http://www.unicredit.com.au/special/Uniteller_gateway.html","tsw_window","width=780,height=480,Toolbar=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,status=yes")
    function NewWindowAD3() {
    var WindowAD2=window.open("http://www.unicredit.com.au/special/Uniteller_gateway.html","tsw_window","width=780,height=480,Toolbar=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,status=yes")
    function MM_displayStatusMsg(msgStr) { //v1.0
      status=msgStr;
      document.MM_returnValue = true;
    function MM_popupMsg(msg) { //v1.0
      alert(msg);
    function mmLoadMenus() {
      if (window.mm_menu_1020223924_0) return;
      window.mm_menu_1020223924_0 = new Menu("root",207,18,"",12,"#000000","#FFFFFF","#CCCCCC","#000084","left","middle",3,0,1000,-5,7,true,true,true,0,true,true);
      mm_menu_1020223924_0.addMenuItem("On Call Savings Account (S1)","location='/r3/products/s1.html'");
       mm_menu_1020223924_0.hideOnMouseOut=true;
       mm_menu_1020223924_0.bgColor='#555555';
       mm_menu_1020223924_0.menuBorder=1;
       mm_menu_1020223924_0.menuLiteBgColor='#FFFFFF';
       mm_menu_1020223924_0.menuBorderBgColor='#777777';
                                        window.mm_menu_1020224118_0 = new Menu("root",175,16,"",10,"#FFFFFF","#000000","#F6892D","#FCBC86","left","middle",3,0,1000,-5,7,true,true,true,4,true,true);
      mm_menu_1020224118_0.addMenuItem("Everyday Accounts","location='../savings/everyday.html'");
      mm_menu_1020224118_0.addMenuItem("Special Savings Accounts","location='../savings/special_savings.html'");
      mm_menu_1020224118_0.addMenuItem("Term Deposits","location='../savings/term_deposits.html'");
       mm_menu_1020224118_0.hideOnMouseOut=true;
       mm_menu_1020224118_0.bgColor='#FFFFFF';
       mm_menu_1020224118_0.menuBorder=1;
       mm_menu_1020224118_0.menuLiteBgColor='#FFFFFF';
       mm_menu_1020224118_0.menuBorderBgColor='#FFFFFF';
      window.mm_menu_1203172153_0 = new Menu("root",150,16,"",10,"#FFFFFF","#000000","#F6892D","#FCBC86","left","middle",3,0,1000,-5,7,true,true,true,4,true,true);
      mm_menu_1203172153_0.addMenuItem("Personal Loans","location='../loans/personal.html'");
      mm_menu_1203172153_0.addMenuItem("Car Loans","location='../loans/car.html'");
      mm_menu_1203172153_0.addMenuItem("Student Loans","location='../loans/student.html'");
        mm_menu_1203172153_0.addMenuItem("Student Car Loans","location='../loans/student_car.html'");
      mm_menu_1203172153_0.addMenuItem("Home Loans","location='../loans/home.html'");
      mm_menu_1203172153_0.addMenuItem("Visa Access Card","location='../loans/visa.html'");
      mm_menu_1203172153_0.addMenuItem("MyCard MasterCard","location='../loans/mycard.html'");
       mm_menu_1203172153_0.hideOnMouseOut=true;
       mm_menu_1203172153_0.bgColor='#FFFFFF';
       mm_menu_1203172153_0.menuBorder=1;
       mm_menu_1203172153_0.menuLiteBgColor='#FFFFFF';
       mm_menu_1203172153_0.menuBorderBgColor='#FFFFFF';
        window.mm_menu_1203173138_0 = new Menu("root",154,16,"",10,"#FFFFFF","#000000","#F6892D","#FCBC86","left","middle",3,0,1000,-5,7,true,true,true,4,true,true);
      mm_menu_1203173138_0.addMenuItem("Financial Planning","location='../services/financial_planning.html'");
      mm_menu_1203173138_0.addMenuItem("Insurance","location='../services/insurance.html'");
      mm_menu_1203173138_0.addMenuItem("International Currency","location='../services/international_currency.html'");
      mm_menu_1203173138_0.addMenuItem("Travel Cards &amp; Currency","location='../services/Travel.html'");
      mm_menu_1203173138_0.addMenuItem("Tertiary Travel","location='../tt/index.html'");
       mm_menu_1203173138_0.hideOnMouseOut=true;
       mm_menu_1203173138_0.bgColor='#FFFFFF';
       mm_menu_1203173138_0.menuBorder=1;
       mm_menu_1203173138_0.menuLiteBgColor='#FFFFFF';
       mm_menu_1203173138_0.menuBorderBgColor='#FFFFFF';
              window.mm_menu_1203173411_0 = new Menu("root",189,16,"",10,"#FFFFFF","#000000","#F6892D","#FCBC86","left","middle",3,0,1000,-5,7,true,true,true,4,true,true);
      mm_menu_1203173411_0.addMenuItem("BPAY","location='../access/bpay.html'");
      mm_menu_1203173411_0.addMenuItem("Bank@Post","location='../access/giropost.html'");
      mm_menu_1203173411_0.addMenuItem("Redicard","location='../access/redicard.html'");
      mm_menu_1203173411_0.addMenuItem("ATM Access","location='../access/rediteller_access.html'");
      mm_menu_1203173411_0.addMenuItem("Visa Access Card","location='../loans/visa.html'");
      mm_menu_1203173411_0.addMenuItem("Telephone Banking","location='../access/phone_banking.html'");
      mm_menu_1203173411_0.addMenuItem("Branch Access","location='../access/branches.html'");
      mm_menu_1203173411_0.addMenuItem("Transfers to Unicredit","location='../access/transferin.html'");
      mm_menu_1203173411_0.addMenuItem("SMS Alerts &amp; Enquiries","location='../access/sms_alerts.html'");
      mm_menu_1203173411_0.addMenuItem("Uniteller internet banking","location='../access/uniteller_info.html'");
       mm_menu_1203173411_0.hideOnMouseOut=true;
       mm_menu_1203173411_0.bgColor='#FFFFFF';
       mm_menu_1203173411_0.menuBorder=1;
       mm_menu_1203173411_0.menuLiteBgColor='#FFFFFF';
       mm_menu_1203173411_0.menuBorderBgColor='#FFFFFF';
        window.mm_menu_1203173434_0 = new Menu("root",169,16,"",10,"#FFFFFF","#000000","#F6892D","#FCBC86","left","middle",3,0,1000,-5,7,true,true,true,4,true,true);
      mm_menu_1203173434_0.addMenuItem("Online security tips","location='../security/index.html'");
      mm_menu_1203173434_0.addMenuItem("Avoid internet fraud","location='../security/avoid_fraud.html'");
      mm_menu_1203173434_0.addMenuItem("Commons types of fraud","location='../security/common_fraud.html'");
       mm_menu_1203173434_0.hideOnMouseOut=true;
       mm_menu_1203173434_0.bgColor='#FFFFFF';
       mm_menu_1203173434_0.menuBorder=1;
       mm_menu_1203173434_0.menuLiteBgColor='#FFFFFF';
       mm_menu_1203173434_0.menuBorderBgColor='#FFFFFF';
    window.mm_menu_1203173737_0 = new Menu("root",160,16,"",10,"#FFFFFF","#000000","#F6892D","#FCBC86","left","middle",3,0,1000,-5,7,true,true,true,4,true,true);
      mm_menu_1203173737_0.addMenuItem("Branch Locations","location='../aboutunicredit/branches.html'");
      mm_menu_1203173737_0.addMenuItem("Contact Unicredit","location='../aboutunicredit/contact.html'");
      mm_menu_1203173737_0.addMenuItem("Disclosure Information","location='../aboutunicredit/disclosure.html'");
      mm_menu_1203173737_0.addMenuItem("Join Unicredit","location='../aboutunicredit/join.html'");
      mm_menu_1203173737_0.addMenuItem("Management Structure","location='../aboutunicredit/management.html'");
      mm_menu_1203173737_0.addMenuItem("News and Information","location='../aboutunicredit/news_information.html'");
       mm_menu_1203173737_0.hideOnMouseOut=true;
       mm_menu_1203173737_0.bgColor='#FFFFFF';
       mm_menu_1203173737_0.menuBorder=1;
       mm_menu_1203173737_0.menuLiteBgColor='#FFFFFF';
       mm_menu_1203173737_0.menuBorderBgColor='#FFFFFF';
    mm_menu_1203173737_0.writeMenus();
    } // mmLoadMenus()
    function MM_goToURL() { //v3.0
      var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
      for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
        <!--
        function showQuote(mylink) {
          if (!window.focus)return true;
          var href;
          var windowName;
          var features;
          var screenHeight;
          var screenWidth;
          var top;
          var left;
          var isStringUrl;
          if (typeof(mylink) == 'string') {
            href=mylink;
            isStringUrl=true;
          else {
            href=mylink.href;
            isStringUrl=false;
          windowName = "QuoteMaster_" + new Date().getTime();
          screenWidth = 767;
          screenHeight = screen.availHeight - 95;
          top = (( screen.availHeight ) - screenHeight ) / 2;
          left = (( screen.availWidth ) - screenWidth ) / 2;
          features = "resizable=yes,toolbar=0,menubar=no,directories=no," +
                      "scrollbars=yes,location=no,top=" + top +
                      ",left=" + left + ",width=" + screenWidth +
                      ",height=" + screenHeight;
          window.open(href, windowName, features);
          if( isStringUrl == false ) {
            return false;
    //-->
    </script>
    <script language="JavaScript" src="../mm_menu.js"></script>
    <link href="../unicredit2005.1.css" rel="stylesheet" type="text/css">
    <!-- InstanceBeginEditable name="head" -->
    <style type="text/css">
    <!--
    .style17 {font-size: 100%}
    .style18 {
    font-size: 120%;
    font-weight: bold;
    color: #FF6600;
    .style27 {
    font-size: 120%;
    font-weight: bold;
    .style28 {color: #336666}
    .style29 {font-size: 80%}
    .style30 {font-size: 70%}
    .style31 {font-size: 60%}
    .style36 {font-size: 120%}
    .style37 {font-size: 90%}
    .style41 {
    color: #FF6600;
    font-weight: bold;
    .style42 {font-size: 130%}
    .style43 {color: #FF9900}
    .style44 {color: #336666; font-weight: bold; }
    -->
    </style>
    <!-- InstanceEndEditable -->
    </head>
    <body>
    <script language="JavaScript1.2">mmLoadMenus();</script>
    <div id="masthead">
      <h1 id="siteName"><a href="http://unicredit.com.au"><img src="../images/Unicredit_logo_2011.jpg" alt="Unicredit logo" width="318" height="94" border="0"></a></h1>
      <div id="headerNav1"><a href="../index.php" id="but_home">Home</a><a href="../aboutunicredit/contact.html" id="but_contactus">Contact Unicredit</a></div>
      <br>
      <div id="headerInfo1">
        <p align="right">ABN 90 087 651 901 :: AFSLN / ACL 244168 :: BSB 806036<br>
        The University Credit Society Ltd </p>
      </div>
      <div id="globalNav">
      <a href="../savings/index.html" name="link11" id="link1" onMouseOver="MM_showMenu(window.mm_menu_1020224118_0,0,17,null,'link11')" onMouseOut="MM_startTimeout();">Savings &amp; Investments</a>|<a href="index.html" name="link8" id="link2" onMouseOver="MM_showMenu(window.mm_menu_1203172153_0,0,16,null,'link8')" onMouseOut="MM_startTimeout();">Loans</a>|<a href="../services/index.html" name="link9" id="link5" onMouseOver="MM_showMenu(window.mm_menu_1203173138_0,0,16,null,'link9')" onMouseOut="MM_startTimeout();">    Services</a>|<a href="../access/index.html" name="link12" id="link6" onMouseOver="MM_showMenu(window.mm_menu_1203173411_0,0,16,null,'link12')" onMouseOut="MM_startTimeout();">Account
          Access</a>|<a href="../security/index.html"  name="link10" id="link16" onMouseOver="MM_showMenu(window.mm_menu_1203173434_0,-40,16,null,'link10')" onMouseOut="MM_startTimeout();">Online
          Security Tips</a>|<a href="../aboutunicredit/index.html" name="link4" id="link7" onMouseOver="MM_showMenu(window.mm_menu_1203173737_0,-60,16,null,'link4')" onMouseOut="MM_startTimeout();">About
          Unicredit</a></div>
    </div>
    <table width="100%" border="0" cellpadding="0" cellspacing="0">
      <tr valign="top">
        <td width="150" background="../images/BGNavMid.gif"><div id="navcontainer"><!-- InstanceBeginEditable name="leftMargin" --><!-- #BeginLibraryItem "/Library/nav_loans.lbi" -->
          <h2>Loans </h2>
          <ul id="navlist">
            <li><a href="personal.html"> Personal Loans</a></li>
      <li><a href="visa.html"> Visa Access</a></li>
      <li><a href="car.html"> Car Loans</a></li>
            <li><a href="student.html">Student Loans</a></li>
            <li><a href="home.html">Home Loans</a></li>
            <li id="third"><a href="home_stdvar.html">  Standard variable</a></li>
            <li id="third"><a href="home_fixedrate.html">  Fixed rates</a></li>
            <li id="third"><a href="home_equaccess.html">  Equity access</a></li>
            <li><a href="visa.html">Visa Debit Card</a></li>
            <li><a href="mycard.html"> MyCard MasterCard</a></li>
            <li id="third"><a href="mycard_infoglance.html">  Information at a glance</a></li>
            <li id="third"><a href="mycard_qa.html">  Questions &amp; answers</a></li>
          </ul>
    <!-- #EndLibraryItem --><!-- InstanceEndEditable --></div></td>
        <td><!-- InstanceBeginEditable name="content" -->
          <div id="breadCrumb">
            <p><a href="../index.php">Home</a> / <a href="index.html">Loans</a> /        Home Loans </p>
          </div>
          <h2 id="pageName">No Home Loan Set Up Fees:<span class="style43"> til March 31 </span></h2>
          <div id="content">
          <div class="feature">
            <table width="100%" border="0" cellspacing="0" cellpadding="5">
                  <h2>6.60% Standard Variable<span class="style29"> (CR*)  </span><br>
                    or 6.05% Fixed for 1 or 2 years<span class="style37"><sup>3<br>
                    </sup></span></h2><P>
                  <p class="style44">Speak to a Unicredit Lending Consultant today on (08) 9389 1011 or book an appointment at our Nedlands Lending Centre or </p>
                  <h2>
                    <a href="https://www.unicredit.com.au/secure/loanapplication_befapp.html?loantype=Home Loan" target="_blank" class="style41">:: click here to apply</a></h2>
                  <p class="style28"> </p>
                  <h2><span class="style18">We're waiving home loan start up costs.</span><span class="style37"><sup>1</sup></span></h2>
                  <p><strong>For a limited time Unicredit  will cover your home loan start up costs. </strong></p>
                  <p>As Unicredit is already a low cost lender, this will cover all  standard Unicredit loan costs and fees - including  property valuation<sup>4</sup> and Government Landgate costs.  If you&rsquo;re  re-financing an existing mortgage, you will still have money left over to  contribute to  exit costs from the bank.</p>
                  <p>The offer applies to all new home and investment loan applications, regardless of loan balance, for both new and existing members. <sup>1</sup></p>
                  <p><span class="style18"><br>
                    Why we can offer a better deal </span></p>
                  <p>As a &lsquo;mutual&rsquo; credit union,  Unicredit is able to act in the best interest of its members.  Our award winning range of home loans are not  available through mortgage brokers - so we don&rsquo;t pay commissions. If you take this opportunity to move your mortgage, you will be joining  4.5 million Australians who choose to bank at a place which is not a bank at  all... a place with all the products of a bank, but with a different attitude. As a member based organisation you can trust our motives, and know that we will be there for the long-haul.<br>
                  </p>
                  <p align="left"><span class="style18">Better personal service</span><br>
                    Unicredit members have their own personal lending consultant, who can tailor your lending for the lowest possible cost and best flexibility for future plans. </p>
                  <h5> </h5>         
                <td align="center" valign="top"><p><img src="../images/HomeLoan/boxes-lady.jpg" width="184" height="184"><br>
                </p>
                  <p><img src="../images/HomeLoan/house_Comesback.jpg" width="178" height="178"><br>
                  </p>
                  <p><img src="../images/HomeLoan/COmesBacklogo.jpg" alt="allComesBack" width="172" height="180"></p></td>
              </tr>
            </table>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td><p><img src="../images/HomeLoan/Pregnant.jpg" alt="ComesbacktoYou" width="191" height="183"></p>
                  <p> </p>
                  <p><img src="../images/HomeLoan/renos.jpg" alt="renos" width="199" height="192"></p></td>
                <td><p><span class="style18">Better standard variable rates</span><br> <swderew>
                  Our loans can&rsquo;t be simpler or more flexible. We don&rsquo;t play games with our members or use  complex loan structures to hide long-term rates and fees. Our aim is to be fair to all members.<br>
                </p>
                  <table width="300" border="0" cellspacing="4" cellpadding="0">
                    <tr>
                      <td width="120"><span class="style36">Unicredit </span></td>
                      <td valign="top"><span class="style27">6.60%</span></td>
                      <td valign="top"><div align="right" class="style17">6.60%<span class="style30"> CompRate</span>*</div></td>
                    </tr>
                  </table>
                  <p class="story">Full service - free redraw<span class="style30">(2)</span> - no 'exit' fee - and No Ongoing Fees <br>
                      <br>
                    compare that to the big banks' <span class="style17">Standard Variable Rates...</span></p>
                  <table width="300" border="1" cellpadding="2" cellspacing="0" bordercolor="#000">
                    <tr>
                      <td width="120"><P>ANZ</td>
                      <td valign="top">7.30%</td>
                      <td valign="top"><div align="right">7.40%<span class="style30">CompRate*</span></div></td>
                    </tr>
                    <tr>
                      <td width="120"><p>Commonwealth</p>
                          <p>BankWest<br>
                              <span class="style29">'Mortgage Shredder' </span></p></td>
                      <td valign="top"><p>7.31% </p>
                          <p>7.20%</p></td>
                      <td valign="top"><p align="right">7.45%<span class="style30">CompRate*</span></p>
                          <p align="right">7.26%<span class="style30">CompRate*</span></p></td>
                    </tr>
                    <tr>
                      <td width="120"><P>NAB</td>
                      <td valign="top">7.22%</td>
                      <td valign="top"><div align="right">7.35%<span class="style30">CompRate*</span></div></td>
                    </tr>
                    <tr>
                      <td width="120"><P>Westpac<br>
                              <span class="style29">'Rocket Repay' </span></td>
                      <td valign="top">7.36%</td>
                      <td valign="top"><div align="right">7.49% <span class="style30">CompRate*</span></div></td>
                    </tr>
                  </table>
                  <p class="story style29">rates taken from banking  websites as at 22/12//2011 </p>
                  <p class="story style29"> </p>
                  <p>As a special offer, you  can choose to <strong>fix your mortgage </strong> at 6.05% (CR*) for 1 or 2 years<sup>3</sup> - or   split your loan at no additional cost : to lock-in that rate on part of the  loan, but still allowing you to make extra repayments and free redraws.</p>
                  <p> </p>
                  <p><span class="style18">Better flexibility</span><br>
    Life is never simple, so we make sure that our loans are flexible enough to deal with your changing financial needs. Unicredit&rsquo;s best rate is on a simple standard variable product, which allows extra repayments at any time - and unlimited free redraws when you want to use those funds.<span class="style31">(2)</span> This  can save you hundreds of dollars in interest and fees, by replacing the need for personal loans and credit card debt for the whole family. We provide the personal service to make this easy.</p>
                  <p> </p></td>
              </tr>
            </table>
            <table width="100%" border="0" cellspacing="10" cellpadding="0">
            </table>
            <p><span class="style18">Unicredit&rsquo;s professional lending service in Nedlands can customise your home or investment loan exactly for your needs.</span></p>
            <p>You can borrow up to 95% and keep your repayments low with the option of interest only repayments for up to 5 years. You can even split the loan between fixed and variable and make redraws at no cost. <span class="superscript">2</span>There are no ongoing fees for a Unicredit home loan and we&rsquo;ll even provide a Visa Access card which can be used to withdraw cash at any ATM in Australia with no Direct ATM fees and no maintenance fees. <span class="superscript">1</span></p>
            <p><strong>PLUS - No ATM Fees on any ATM in Australia <span class="superscript">5</span></strong></p>
            <p><strong><span class="superscript"><br>
            </span></strong></p>
          </div>
       <div class="story">
            <h1>Home loans available  </h1>
            <ul>
              <li><strong> <a href="home_stdvar.html">Classic Plus - Standard Variable Home Loan </a></strong></li>
              <li><strong><a href="home_fixedrate.html">Fixed Options Home Loan </a></strong></li>
              <li><strong><a href="home_equaccess.html">Equity Access</a></strong><span class="style17"><br>
           </span></li>
            </ul>
         <h3><br>
           Speak to a Lending Consultant &ndash; </h3>
         <ul>
              <li> You can speak to a Lending Consultant Monday to Friday, 8.30am to 4.30pm
                by calling Unicredit on (08) 9389 1011 or email <a href="[email protected]:[email protected]">[email protected]</a>.            </li>
           <li>You can also make an appointment with a Lending Consultant to discuss
                  your loan requirements anytime during office hours. </li>
           </ul>
         <h3> <br>
           Family Equity Mortgage <span class="superscript">#</span></h3>
         <ul>
              <li> Unicredit offers first home buyers a low cost way into the property market, with little or no deposit by using equity in the family home - which can even help avoid costly Lender&rsquo;s Mortgage Insurance.</li>
           <li><a href="home_familyeqmorg.html" target="_self">Find out more </a></li><br>
         </ul>
         <h1>Key Facts Sheet  </h1>
      <p>You can find this handy calculator on our 'Loan Calculator' page on this website. This facility allows you to input your desired loan amount and repayment period and, as their name suggests, receive a summary of all the 'key' information about the loan. Give it a try today.
    <br><A HREF=http://unicredit.infocast.com.au/>Click here</A> to start your own Key Facts sheet
         <h3><br>
           <a href="https://www.unicredit.com.au/secure/loanapplication_befapp.html?loantype=Home Loan" target="_blank" class="style42">Apply Today :: Loan
              application form</a></h3>
         <ul><li><a href="loan_calculator.html"> Online loan calculator</a></li>
              </ul>
         <p> </p>
         <p class="story"><strong>Interstate Lending</strong>: As a general rule, Unicredit only lends to Western Australian based members, however we encourage others to discuss an application.</p>
         <p class="story"><strong>Non-Australian Resident Applications </strong>: As a general rule, Unicredit will not lend to new applicants who are not resident in Australia</p>
         </div>
       <p class="disclaimer comparisonTable comparisonTable"> 1. <span class="comparisonTable">Unicredit will waive its standard   loan establishment costs and then reimburse standard loan establishment costs   and exit costs from previous financier, up to a total of $1000, for all new   property secured loan applications made before   31/3/2012. </span>2 Minimum loan redraw $1000. 3 The quoted fixed rate is an indicative interest rate only - the fixed rate is set at time of loan funding. 4 Standard valuation costs are defined as valuation costs for properties in the Perth metropolitan area, where the value is under $1 million. The property valuer's cost for this is $184.50. 5. Unicredit members with a home loan over $150,000 do not pay Direct ATM Fees on any ATM in Australia. Overseas ATM withdrawal fees still apply. </p>
       <!-- #BeginLibraryItem "/Library/TYSK_loans.lbi" -->
          <div class="disclaimer">
            <p> Things you should know</p>
            <p> All loan applications are subject to Unicredit's normal lending criteria.
              Fees and government charges apply, please refer to our Fees and Charges
              Schedule, by clicking on the link below or collecting from any Unicredit
              branch.</p>
            <ul>
              <li>
                <p><a href="../aboutunicredit/fees_charges.html"> Fees and charges</a></p>
              </li>
              <li>
                <p><a href="Interest" _mce_href="http://unicredit.com.au/aboutunicredit/rates.html">Interest">http://unicredit.com.au/aboutunicredit/rates.html">Interest Rates </a></p>
              </li>
            </ul>
            <p>*Comparison rate is for a loan of $150,000 for a term of 25 years. Warning: This comparison rate is true only for the  examples given and may not include all fees and charges. Different terms, fees  or other loan amounts might result in a different comparison rate.</p>
            <p>Comparison Rate Schedules are available from any Unicredit branch,
              or can be downloaded by clicking on the link below.</p>
            <ul>
              <li>
                <p><a href="../aboutunicredit/CRShome.pdf">Home Loan Comparison Rate Schedule</a></p>
              </li>
              <li>
                <p><a href="../aboutunicredit/CRSpersonal.pdf">Personal Loan Comparison
                  Rate Schedule</a></p>
              </li>
            </ul>
            <ul>
              <li>
                <p><a href="HardshipPolicy.html">Financial Hardship Assistance</a></p>
              </li>
              <li>
                <p><a href="../aboutunicredit/DisputeResolution.html">Dispute Resolution Procedure </a></p>
              </li>
              <li>
                <p><a href="../pdf/CreditGuideAppendix14.pdf" target="_blank">Credit Guide </a></p>
              </li>
            </ul>
            <p>+Unicredit will lend up to 95% of the valuation of the property for
              owner occupier or investment property home loans (Loan to Valuation
              Ratio or LVR). Where the loan exceeds 80% of the property valuation,
              lender's mortgage insurance is required (LMI).</p>
            <p>^Conditions apply.
              Repayment holidays are currently provided where a member is in advance
              on their minimum payments, to a maximum number of repayment periods
              that can be covered by the advance. Requests for repayment holidays
              must be made in writing to the Loans Manager.</p>
            <p>#Conditions apply.
              Family equity mortgages should be discussed with a lending officer
              by calling Unicredit on 9389 1011.</p>
            <p>~External fees such as government charges, settlement attendance and
              valuation fees apply. Please refer to our Fees and Charges Schedule.<br>
              </p>
          </div>
          <!-- #EndLibraryItem --></div>
        <!-- InstanceEndEditable --></td>
        <td width="140" class="rtmarginTable"><div id="rightMargin"><div class="rtmarginItem"><script language="Javascript">
    var agt=navigator.userAgent.toLowerCase();
    </script></div>
    <div class="rtmarginItem"><a
    href="http://www.unicredit.com.au/special/Uniteller_gateway.html"><img src="/images/logo-uniteller.gif" alt="Proceed to Uniteller" width="135" height="60" border="0"></a></div>
    <div class="rtmarginItem"><a
    href="http://www.unicredit.com.au/loans/mycard.html"><img src="../images/logo-mc-cardservices.gif" alt="MasterCard CardServices" width="138" height="47" border="0"></a></div>
    <div class="rtmarginItem"><a
    href="visa.html"><img src="../images/visa_access.gif" alt="Verified by VISA" width="138" height="48" border="0"></a></div>
      <div class="rtmarginItem"></div>
            <a href="http://rediatm.com.au" target="_blank">
            <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="142" height="118" title="reditatm" onClick="MM_goToURL('parent','http://www.rediatm.com.au');return document.MM_returnValue">
              <param name="movie" value="/special/redi.swf">
              <param name="quality" value="high">
              <embed src="/special/redi.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="142" height="118"></embed>
            </object>
            </a>
            <div class="rtmarginLink"><a
    href="../aboutunicredit/rates.html"><img src="../images/link_intRates.gif" alt="Interest Rates" width="136" height="22" border="0"></a></div>
        <div class="rtmarginLink"><a
    href="../aboutunicredit/fees_charges.html"><img src="../images/link_feesCharges.gif" alt="Fees & Charges" width="136" height="22" border="0"></a></div>
        <div class="rtmarginLink"><a
    href="../forms/index.html"><img src="../images/link_onlineForms.gif" alt="Online Forms" width="136" height="22" border="0"></a></div>
        <div class="rtmarginLink"><a
    href="loan_calculator.html"><img src="../images/link_loanCalculator.gif" alt="Loan Calculator" width="136" height="22" border="0"></a></div>
        </div></td>
      </tr>
    </table>
    <!--end navBar div -->
    <!--end headlines -->
    <!--end content -->
    <div id="siteInfo"><a href="Site" _mce_href="http://www.unicredit.com.au/aboutunicredit/sitemap.html">Site">http://www.unicredit.com.au/aboutunicredit/sitemap.html">Site
        Map</a> | <a href="Disclosure" _mce_href="http://www.unicredit.com.au/aboutunicredit/disclosure.html">Disclosure">http://www.unicredit.com.au/aboutunicredit/disclosure.html">Disclosure Info</a> | <a href="Contact" _mce_href="http://www.unicredit.com.au/aboutunicredit/contact.html">Contact">http://www.unicredit.com.au/aboutunicredit/contact.html">Contact </a> | &copy;2008
    Unicredit | Lost Card Hotline: 1800 224 004  | Swift Code: CUSCAU2SXXX  | BSB: 806-036 </div>
    <!--google analytics code dropped in -->
    <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
    </script>
    <script type="text/javascript">
    _uacct = "UA-2467622-1";
    urchinTracker();
    </script>
    </body>
    <!-- InstanceEnd --></html>

  • JSP Design view not working in JDeveloper 10.1.3.3

    Hi,
    The problem I have is that my JSPs all throw a class not found error in design view when I load them. The problem is related to the useBean tag (see error example).
    Error exercising tag : jsp:useBean
    java.lang.Exception: java.lang.ClassNotFoundException: com......client.jsp.testclass
    The application is divided into a web project, an EJB project, and a server classes project. The JSPs are in the web project and the problem classes are in the server classes project. I'm limited to source view editing of JSPs due to this and the problem is only in the IDE, deployment of the code to the server is fine.
    Any suggestions would be appreciated.
    Kaitain

    I think they are but I could be mistaken, as the libraries list for the web project shows the server classes as a library.

  • Design View not rendering content of pages

    I am the webmaster and lead developer for a state university. We have developed a responsive Dreamweaver template for our mostly non-coding users (admin assistants usually are assigned web tasks for some reason). You can see our site here http://www.wwu.edu/webtech . When we bring up pages in Design View, they cannot be edited; none of the content is visible. Live view is pretty good, but it's difficult for non-coders to edit in this window. For instance, in Design view they can just select Enter after a block of text to start a new <p>; In Live View you can modify an existing paragraph as if you were in Design View, but you cannot add elements without using the Insert tool. My non code users have no idea what the Insert menu is talking about. So my questions are:
    1. First - has anyone else hit situations where Design View did not work? Here is what it looks like for the site mentioned above:
    2. Any idea why design view cannot handle this page? It's a standard responsive site with media queries... I've tried stripping out complexity but cannot get it to work. It is valid HTML and passes tests.
    3. Am I using the wrong product? Can Muse handle Dreamweaver templates?

    Nancy O, osgood_, Fritz, thank you for your thoughts.
    Dreamweaver has been a wonderful tool for non-coders for many years. We developed templates for the groups, then all they had to do was put the content into the correct areas through the power of the Dreamweaver template. That is no longer possible it seems with the more complex, responsive templates. And yes, Osgood_ , it does appear that some pages will be rendered fine in Dreamweaver. Our older templates such as represented by this site: http://www.wwu.edu/bservices IS viewable and editable in Dreamweaver Design view. Those users are quite happy. However our newest responsive Dreamweaver templated sites such as http://www.wwu.edu/webtech and http://www.wuw.edu/registrar2 are not.
    What I'd really love is for an adobe engineer to sit down and look at our templates and let me know if there is anything I could do to make these templates usable in Design View.
    Our other alternative is to move away from static HTML and Dreamweaver and go entirely to WordPress and Drupal. I will miss Dreamweaver when this happens! I had hoped there was a place for those who did not want the complication of a Wordpress site...

  • In Design View, not seeing PHP includes

    I'm on a new Vista laptop using DW CS3, and pages whose
    contents displayed
    in Design View before aren't displaying in Design View.
    They're PHP pages
    with some includes, such as this one:
    http://www.miraverse.com/manifold20/studio/music-room.php
    In Design View, I only see the non-include parts of the page.
    That preference under Invisible Elements, to view SSIs in
    Design View, IS
    checked.
    Any help will be MUCH appreciated!
    Patty Ayers | Adobe Community Expert
    www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet

    >I see that you wrote, "But if you want to work with DW,
    you must not have
    > <html>, <head>, or <body>
    > tags in your includes."
    I conditionally retract that statement, since CS4 seems to
    tolerate this
    pretty well.
    Let's restate it this way -
    If you have such tags in your include files, then you MUST
    NOT HAVE THEM IN
    THE PARENT PAGE. In other words, the final assembled page
    must have only a
    single set of <html>, <head>, or <body>
    tags.
    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
    ==================
    "hbograd" <[email protected]> wrote in
    message
    news:[email protected]...
    >I see that you wrote, "But if you want to work with DW,
    you must not have
    > <html>, <head>, or <body>
    > tags in your includes."
    >
    > I'm a generally experienced computer user (but not a
    programmer), but new
    > to
    > web design and dreamweaver. I just had a volunteer web
    designer go through
    > our
    > nonprofit group's big website and create a test site
    converting all .html
    > files
    > to .php, and using server side includes. The test site
    seems to work now
    > in
    > Firefox and Internet Explorer, but I can't view the
    stuff from the
    > includes in
    > Dreamweaver. Our volunteer has no experience with
    Dreamweaver.
    >
    > It sounds like the key to the problem might be that he's
    used <html>,
    > <head>,
    > or <body>
    > tags in our includes. Here, as an example, is the text
    of footer.php:
    >
    > </div></body></html>
    >
    > Is the solution to re-enter the <html>,
    <head>, and <body> tags in each
    > individual file? I'd love to see an example of where
    they go in relation
    > to the
    > includes.
    >
    > A more basic question: When people talk about "SSI's" in
    this forum, do
    > they
    > mean server side includes?
    >
    > Can you point me to any kind of tutorial or other
    resources that deal with
    > using server side includes with Dreamweaver?
    >
    > Thanks.
    >
    > Harriet
    >
    >
    >
    >
    >
    > "</div></body></html>
    >

  • Design View Not Displaying Pages with any Formatting

    I asked this question in another thread and somebody locked it.  The question is not answered.  My Design view is not displaying my files with any formatting.  I can view them in a browser, but not in Design view where I can see my work as I'm working.  While I can upload files to the remote server (host provider) the links got screwed up so files on the remote server don't show any formatting either.  Every link, thousands of links, are off by one word (folder) from where my site was residing on my hard drive.  When I try to make a change to the links manually then I can no longer view them with any formatting in my own browser either.
    On my local broswer on my PC the address line reads: http://localhost/folderNameIneedToDelete/filename.php
    On the live website (for my homepage) the address line reads http://websiteName.com/folderNameIneedToDelete/index.html
    (Here is the text from another thread that was improperly locked)
    I just added a remote server to my site so I could begin uploading files to my host provider.  When I saved the setup I saw a message popup about the cache changing.  Now when I try to view a file in Dreamweaver in Design View it doesn't recognize any of the external style sheets.  It displays with no formating.
    I can still view the pages in a browser and they look appropriate, just not in Design View where I can continue working on the site as I've been doing.
    How do I get Design View to display my pages properly again using the .css pages that apply to each page design?
    Thanks,
    Robert

    Murray, thanks for all your assistance.
    Before I edit thousands of links again I want to confirm I've interpreted all your info correctly.  If I setup everything as follows all my pages should work in Design View, browsers accessed from the "Preview/Debug in browser" icon in Dreamweaver and most importantly in a live environment at a host provider:
    Site Setup
    Site - Site Name:  anything including spaces
    Site - Local Site Folder:  C:\wamp\www\rootfoldername\
    Servers - Testing Server (Testing: checked)
    Server Name:  Testing Server
    Connect Using:  Local/Network
    Server Folder:  C:\wamp\www\rootfoldername\
    Web URL:  http://localhost/rootfoldername/
    Remote Server - Maintain synmchronization information:  checked
    Remote Server - Automatically upload files to server on Save:  unchecked
    Remote Server - Enable file check-out:  unchecked
    Testing Server - Server Model:  PHP My SQL
    Version Control - Access:  None
    Advanced Settings - Local Info - Default Images Folder:  C:\wamp\www\rootfoldername\_images\
    Advanced Settings - Local Info - Links relative to:  Document
    Advanced Settings - Local Info - Web URL:  http://sitename.com/
    Advanced Settings - Local Info - Case-sensitive links checking:  unchecked
    Advanced Settings - Local Info - Enable Cache:  checked
    Advanced Settings - Cloaking - Enable Cloaking:  checked
    Cloak files ending with:  unchecked
    Advanced Settings - Design Notes - Maintain Design Notes:  checked
    Advanced Settings - Design Notes - Enable Upload Design Notes for Sharing:  unchecked
    Advanced Settings - File View Columns - Name:  Built In - Show
    Advanced Settings - File View Columns - Notes:  Built In - Hide
    Advanced Settings - File View Columns - Size:  Built In - Show
    Advanced Settings - File View Columns - Type:  Built In - Show
    Advanced Settings - File View Columns - Modified:  Built In - Show
    Advanced Settings - File View Columns - Checked Out By:  Built In - Show
    Advanced Settings - Contribute - Enable Contribute compatibility:  unchecked
    Advanced Settings - Templates - Don't rewrite relative document paths: checked
    Advanced Settings - Spry - Asset Folder:  C:\wamp\www\rootfoldername\SpryAssets\
    Site File Structure - place files in the following folders:
    C:\wamp\www\rootfoldername
    webpages (html & php)
    _images  - [folder] (there are numerous image folders beginning with _images) containing .jpg and .png files
    _includes - [folder] containing attached .php files for the header, navigation and footer attached to every page
    _scripts - [folder] containing .js script files
    _styles - [folder] containing .css files (external style sheets)
    Connections - [folder] contains one php file (databasename.php)
    SpryAssets - [folder] containing system generated .js files .css files and .gif files
    ZendFramework - [folder] - I have no idea if the files in this folder are necesary and why it was placed here many months ago
    ** Links **
    Remove the leading / from every link in every file
    HTML5 shiv
    using an external link will always reflect the latest changes(Question) - If I link to this .js file externally at google instead of linking to a current copy in my _script folder could future changes to this external .js file cause future problems with the webpages that have this file attached?
    Remote Server
    Setup a remote server using the ftp address settings provided by the host provider.  (Question) Any settings defined for the future Remote Server (the first remote server was deleted when problems occured) will not cause any harm to anything involving the Testing Server such as viewing webpages in Design View, browsers accessed from the "Preview/Debug in browser" icon in Dreamweaver and will not cause any harm to any files eventually put to the host provider via that future Remote Server. Is that correct?
    Murray, thanks again for your help,
    Robert

  • DW MX2004 design view not showing

    Hi... I'm working in split mode in DWMX2004. The background
    image is bigger than the design window. No matter what I do, I
    cannot scroll to the top of the page to add content. There is no
    scroll bar on the right side. I have minimized and stretched the
    page, I have restored the page to full size. I cannot get it to
    show the whole page. BTW, even if working in just design view, I
    cannot get to the top of the page. Very frustrating to say the
    least... please, help?
    TIA
    Mike T.

    Did you just insert the image into a blank document, or have
    you declared
    this image as the background to a container.
    You need to use css to declare this image as a background
    image for the
    table itself or for a div (do not use layers as your main way
    to construct
    a page-you'll only end up with more headaches :)
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    Spry Widget Examples
    http://www.dreamweaverresources.com/spry-widgets/
    "mtripoli3" <[email protected]> wrote in
    message
    news:f6r43t$2j4$[email protected]..
    > Hi,
    > Thanks for the quick response. I can't give you a URl
    because the page
    > isn't
    > ready. You are correct; it is a blank page with a large
    background image.
    > The
    > problem is I can't get to the "top" of the window to add
    content. I've
    > tried
    > putting in a table and expanding it to the top, but it
    will not scroll to
    > the
    > top. I've tried the same thing with a layer. At one
    point, and I don't
    > know how
    > I did it, I could scroll to the top if I mimimized the
    window and then
    > dragged
    > it to a workable size. I haven't been able to repeat
    this. What do you do
    > when
    > the background image is large?
    >

  • JSFF design view not showing

    In the design view of a jsff file, only the structure of the af components is shown. Any advice?
    (seems this forum does support images ...)
    Edited by: Leon Zeng on May 3, 2013 10:39 AM

    Hi Leon,
    I have seen this behaviour after the use of "Convert to .."
    e.g. after convert of af:inputText (Number) to af:outputText
    "Convert to .." did not remove <af:convertNumber>
    After remove of <af:convertNumber> in the "Source" I got my design view back.
    Best,
    Kees.

  • Design View Not Working Properly

    Hi, I save my web site files as .php and I'm using DW CS5. When I switch to Design View all I get are a couple of icons. Why won't it display the page for me?

    Save file as 'test.html'
    If you still cannot see anything in design view, use the validation tools below and fix reported errors.
    Code Validation Tools
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    If you're still not seeing anything in Design View, post your code into the web forum with  >> Syntax highlighting > Plain.
    Code in the web forum looks like this.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Design view not always available?

    I have a some sites in Dreamweaver CC 2014 but none of them are created in this version, they are created mostly in CS6. But when I open them in CC 2014, some of them seem to have the "design view" available, but som of them not. And I cannot understand why. Anyone having a clue? This is quite annoying since I want the design view....
    Lena P

    The new Live View on CC 2014.1 64 bit works faster than Design view did in CC 2014, however, pages take twice as long to open/load on my Win 7 machine.
    Also, if the settings are wrong, it is WAY too easy to delete content.
    Example:  With Split view "Code and Live" (No Design option for PHP pages) it will let m scroll in either Code or Live.  If I click content in Live view I can't edit there.  If I then click into Code view the entire Body highlights. If I scroll back down to the content I wish to edit and click a blank section of the code (outside of any tags) the entire body is again highlighted and cursor it at the top of this content.
    More than once, out of habit, I have scrolled down to a content section, typed a letter and a whole block of content has been replaced with my new letter.
    I am convinced this has to do with the new settings and my combinations are not right, but I can't find a combination I like (Can edit either live page or code AND see Fluid Grid background)
    Today, I do prefer the previous Code and Design view for my PHP pages

Maybe you are looking for