Bridge/Lightroom Galleries in DW? [subject edited by moderator]

I own DreamWeaver CS5 and I subscribe to Bridge CC and Lightroom 5. I have created photo galleries in both Bridge and Lightroom and want to embed the galleries into a DreamWeaver page. But neither program loads in my dreamweaver page. Anyone know why?

Bridge generates Flash slideshows which won't load until you preview them in a supporting browser with appropriate Flash player plugins.  And since Flash is a dead web technology (most mobile and tablet devices don't support it), you will be alienating a lot of your web audience who can't view Flash.  For these and other reasons, jQuery and HTML5 galleries are a much better choice on the web.
Lightroom 5 web gallery
Adobe Lightroom 5 Tutorial Generating A Web Gallery And Saving A Template - YouTube
Nancy O.

Similar Messages

  • Upload Adobe video to my site? {subject edited by moderator}

    Hello! How are? I've got question,please.I create my own site and I want to upload on a site the video from Adobe.com.For example : video about "Dreamweaver" captured by Adobe. Is it legally?

    Thank you very much. That's all right.
    Отправлено с iPhone
    23 ביול 2014, в 17:20, Preran <[email protected]> написал(а):
    Upload Adobe video to my site? {subject edited by moderator}
    created by Preran in Dreamweaver support forum - View the full discussion
    Thanks for simplifying this for everyone, Murray.
    Antimusic: While it is not possible to upload an Adobe video to your site, you can embed a video from http://tv.adobe.com using the embed code for the video. Is that what you were looking for?
    Thanks,
    Preran
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6576208#6576208
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Dreamweaver support forum by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Spacing menu links [subject edited by moderator]

    Starting from the basic initial setup, I am trying to move the sample Links so that they are underneath the title and side by side. Now they are almost all side by side, but the extra Links I added are dangling below the initial four Links. How do I space it properly? [content edited by moderator]
    Here's what I'm looking at. I'm trying to get them all side-by-side, and would also like to get it below "Guitar Site".

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <style type="text/css">
    body {
      font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
      background-color: #B4B3AF;
      margin: 0;
      padding: 0;
      color: #000;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
      padding: 0;
      margin: 0;
    h1, h2, h3, h4, h5, h6, p {
      margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
      padding-right: 15px;
      padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
      background-color: #A2A0A0;
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
      border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
      color: #42413C;
      text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
      color: #6E6C64;
      text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
      text-decoration: none;
    /* ~~ This fixed width container surrounds all other blocks ~~ */
    .container {
      width: 960px;
      background-color: #A79E9F;
      margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
      font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
      color: #0A5BD8;
    /* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
    header {
      background-color: #ADB96E;
    /* ~~ These are the columns for the layout. ~~
    1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.
    2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.
    3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
    4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.
    .sidebar1 {
      float: right;
      width: 180px;
      background-color: #EADCAE;
      padding-bottom: 10px;
    .content {
      padding: 10px 0;
      width: 780px;
      float: right;
      color: #000000;
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol {
      padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
    /* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
    nav ul{
      list-style: none; /* this removes the list marker */
      border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
      margin-bottom: 15px; /* this creates the space between the navigation on the content below */
    nav li {
      border-bottom: 1px solid #666; /* this creates the button separation */
    nav a, nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
      padding: 5px 5px 5px 15px;
      display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
      width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
      text-decoration: none;
      background-color: #C6D580;
    nav a:hover, nav a:active, nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
      background-color: #ADB96E;
      color: #FFF;
    /* ~~ The footer ~~ */
    footer {
      padding: 10px 0;
      background-color: #CCC49F;
      position: relative;/* this gives IE6 hasLayout to properly clear */
      clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
    /*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
    header, section, footer, aside, article, figure {
      display: block;
    h1,h2,h3,h4,h5,h6 {
      font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    h1 {
      font-size: 36mm;
      color: #FB1C20;
    </style><!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]--></head>
    <body class="container">
    <div class="container">
      <h3>
        <header>
          <a href="#"><img src="../../Misc/PlayingGuitar.jpg" alt="Insert Logo Here" width="946" height="359" id="Insert_logo" style="background-color: #C6D580; display:block;" /></a>
        </header>
      </h3>
      <div class="body">
        <nav>
        <ul class="content">
          <li><span class="sidebar1"><a href="#">Lessons</a></span></li>
          <li><span class="sidebar1"><a href="#">Tips on Buying</a></span></li>
          <li><span class="sidebar1"><a href="#">Reviews</a></span></li>
          <li><span class="sidebar1"><a href="#">Community</a></span></li>
          <li><span class="sidebar1"><a href="#">About</a></span></li>
        </ul>
        </nav>
      <!-- end .body -->
      <span style="text-align: center"></span></div>
      <article class="content">
        <h1>Guitar Core</h1>
        <section>
         <h2>Headline 1</h2>
          <p> </p>
        </section>
        <section>
          <h2>Clearing Method</h2>
          <p> </p>
          <p>Because all the columns are floated, this layout uses a clear:both declaration in the footer rule.  This clearing technique forces the .container to understand where the columns end in order to show any borders or background colors you place on the .container. If your design requires you to remove the footer from the .container, you'll need to use a different clearing method. The most reliable will be to add a &lt;br class=&quot;clearfloat&quot; /&gt; or &lt;div  class=&quot;clearfloat&quot;&gt;&lt;/div&gt; after your final floated column (but before the .container closes). This will have the same clearing effect. </p>
        </section>
        <section>
          <h2>Logo Replacement</h2>
          <p>An image placeholder was used in this layout in the header where you'll likely want to place  a logo. It is recommended that you remove the placeholder and replace it with your own linked logo. </p>
          <p> Be aware that if you use the Property inspector to navigate to your logo image using the SRC field (instead of removing and replacing the placeholder), you should remove the inline background and display properties. These inline styles are only used to make the logo placeholder show up in browsers for demonstration purposes. </p>
          <p>To remove the inline styles, make sure your CSS Styles panel is set to Current. Select the image, and in the Properties pane of the CSS Styles panel, right click and delete the display and background properties. (Of course, you can always go directly into the code and delete the inline styles from the image or placeholder there.)</p>
        </section>
        <section>
          <h2>Backgrounds</h2>
          <p>By nature, the background color on any block element will only show for the length of the content. This means if you're using a background color or border to create the look of a side column, it won't extend all the way to the footer but will stop when the content ends. If the .content block will always contain more content, you can place a border on the .content block to divide it from the column.</p>
        </section>
        <!-- end .content --></article>
      <footer>
        <p>This footer contains the declaration position:relative; to give Internet Explorer 6 hasLayout for the footer and cause it to clear correctly. If you're not required to support IE6, you may remove it.</p>
        <address>
          Address Content
        </address>
      </footer>
      <!-- end .container --></div>
    </body>
    </html>

  • DWCS6 - can't edit in Code view {subject edited by moderator}

    In the split view or the design view, I can edit text anywhere on the page but when I click on the code side the text is grey and line number bar turns blue. Is there a way to turn the editing back on in the code view? Working on a PC with a document created on a mac.

    No, it won't let me edit in the code at all.
    Here's the code:
    <!DOCTYPE HTML>
    <html><!-- InstanceBegin template="/Templates/OCVR.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <!-- InstanceBeginEditable name="doctitle" -->
      <title>OVCR | New Researcher Guide</title>
      <!-- InstanceEndEditable -->
    <!-- Mobile Specific Metas
    ================================================== -->
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
    <!-- CSS
    ================================================== -->
    <link rel="stylesheet" href="../css/reset.css" type="text/css" media="all" />
    <link rel="stylesheet" href="../css/responsive.css" type="text/css" media="all" />
    <!--[if lte IE 7]>
      <link rel="stylesheet" type="text/css" href="/ovcr/css/ie7.css" />
    <![endif]-->
    <!-- OTHER LINKS
    ================================================== -->
    <link href="http://illinois.edu/lb/rss/19/text.xml" rel="alternate" type="application/rss+xml" title="Illinois News Bureau: Research" />
    <!-- JS
    ================================================== -->
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
    <script src="../scripts/search.js" type="text/javascript"></script>
    <script type="text/javascript" src="http://emergency.webservices.illinois.edu/illinois.js"></script>
    <!-- InstanceBeginEditable name="head" -->
      <link rel="stylesheet" href="../css/smoothness/jquery-ui-1.8.23.custom.css">
      <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js"></script>
      <script>
      $(function() {
      $( "#accordion" ).accordion({
      active: false,
      autoHeight: false,
      collapsible: true,
      header: 'h2'
      </script>
      <!-- InstanceEndEditable -->
    </head>
    <body>
    <div id="header">
      <div class="wrapper">
      <div id="logo"><a href="http://illinois.edu/"><img src="../images/uiuc.png" alt="The Office of the Vice Chancellor for Research" width="57" height="71" /></a><a href="../index.cfm"><img id="ovcr-logo" src="../images/invisible.png" alt="The Office of the Vice Chancellor for Research" width="437" height="63" /></a></div>
      <div id="campus">
      <ul id="nav_2">
      <li class="firstLI"><a href="http://illinois.edu/map/view">Maps</a></li>
      <li><a href="http://illinois.edu/ds/azList">A-Z Campus Index</a></li>
      </ul>
      <form action="" onSubmit="sendSearch()" id="" name="gs" method="get">
      <input type="hidden" name="search">
      <input type="hidden" value="all" name="search_type">
      <input type="hidden" value="" name="skinId">
      <input type="hidden" value="" name="cx">
      <input type="hidden" value="" name="cof">
      <input type="text" onFocus="checkSearchValue()" value="Search" size="10" class="searchbox" id="q" name="q">
      <input type="submit" id="go" class="searchbutton" value="Search" name="sa">
      <ul id="searchRadio">
      <li>
      <input type="radio" checked="checked" value="1" id="searchType_people" name="t">
      <label for="searchType_people">Directory</label>
      </li>
      <li>
      <input type="radio" value="2" id="searchType_info" name="t">
      <label for="searchType_info">Illinois</label>
      </li>
      </ul>
      </form>
      </div>
      </div>
    </div>
    <!-- <= end #header -->
    <div id="nav_main">
      <ul>
      <li><a href="../research/index.cfm">Research Funding</a></li>
      <li><a href="../policies/index.cfm">Policies &amp; Compliance</a></li>
      <li><a href="../training/index.cfm">Training for Researchers</a></li>
      <li><a href="index.cfm">About the OVCR</a></li>
      </ul>
    </div>
    <!-- <= end #navigation -->
    <div class="wrapper">
      <div id="crumbs"><!-- InstanceBeginEditable name="crumbs" --><a href="../index.cfm">Home</a> &raquo; <a href="index.cfm">About the OVCR</a> &raquo; <strong>New Researcher Guide</strong><!-- InstanceEndEditable --></div>
      <!-- <= end #crumbs -->
      <div id="content-bg">
      <div id="content">
      <div id="article"> <!-- InstanceBeginEditable name="content" -->
      <!-- <= end #crumbs -->
      <div id="content">
      <div id="article"> <!-- InstanceBeginEditable name="content" -->
      <div id="subNav"><!-- #BeginLibraryItem "/Templates/about.lbi" --><ul id="menu_resp">
      <li><a href="staff.cfm">Staff Directory</a></li>
      <li><a href="../orgchart.pdf">Organization Chart</a></li>
      <li><a href="committees.cfm">Committees of the VCR</a></li>
      <li><a href="units.cfm">Overview of Units</a></li>
      <li><a href="reports_statistics.cfm">Reports &amp; Statistics</a></li>
      <li><a href="Research_Admin_Guidelines.cfm">OVCR Research Administration Guidelines</a></li>
      <li><a href="volunteer.cfm">Volunteer to Help Illinois Research</a></li>
      <li><a href="contact.cfm">Contact Us</a></li>
    </ul>
    <p><a href="#" onClick="javascript:$('#menu_resp').slideToggle(); return false;" id="menu_m">&ndash; Menu &ndash;</a></p>
    <!-- #EndLibraryItem --></div>
      <div class="section">
      <h1>New Researcher Guide </h1>
      <div id="accordion">
       <p><strong>Welcome to the Illinois Research Community!</strong></p>
      <p>Illinois is a large and complex institution, but we hope that you will soon find your way around both the physical and the electronic campus.<br>
       <br>
       Our culture values collegiality and interdisciplinary research, and we hope this page provides the basic information you need to help you launch your own productive research endeavors.<br>
      <br>
               Click on the tabs below for select links and information about the Illinois research community. More detailed information can be found throughout this website - and if you need additional guidance, don't hesitate to <a href="mailto:[email protected]">contact us</a>. </p>
    <h2><a href="#">Find Research Resources</a></h2>
       <div>
      <p>Your college's research office can provide specifics, as individual research needs will vary depending upon your discipline, but the following links may help you find the tools, equipment, and services to achieve your research goals: </p>
      <p><a href="http://research.illinois.edu/units/technology.cfm">Campus research facilities and services</a><a href="http://research.illinois.edu/about/programs-and-resources.cfm"><br>
         Research programs and additional resources</a></p>
      <p>Select items that may be of particular interest to new faculty include:</p>
       <p><a href="http://www.library.illinois.edu/sc">Library research resources (Scholarly Commons) </a><br>
         <a href="http://www.library.illinois.edu/ugl/mc/">Support for producing digital media  (Media Commons)</a><a href="https://ideals.illinois.edu/"> <br>Research Repository (IDEALS)</a><a href="http://itg.beckman.illinois.edu/visualization_laboratory/"><br>
           Modeling, imaging, and graphic design services (Beckman Vis Lab) and</a><a href="http://www.igb.illinois.edu/core">Microscopy services (IGB Core Facilities)</a><a href="http://www.it.illinois.edu/"><br>
           Computing resources (IT Excellence)</a></p>
               </div>
      <h2><a href="#">Find Funding</a></h2>
       <div>
      <p> Your departmental business office can  guide you, but when you are ready to look for funding, the OVCR can help.</p>
      <h4>Internal Funding Resources:</h4>
                            <p>The <a href="http://crb.research.illinois.edu/">Research Board</a> provides support for new faculty to initiate research at Illinois. <a href="http://research.illinois.edu/research/Funding_Opportunities.cfm"><br>
                            Additional Campus Funding Opportunities</a></p>
                            <h4>External Funding Resources:</h4>
                            <p><a href="http://externalfunding.research.illinois.edu/Default.aspx">Limited Submissions</a><a href="https://www.grantforward.com/index"><br>
                              Grant Forward </a></p>
                            <p>The OVCR offers <a href="http://research.illinois.edu/research/support.cfm">additional support</a> to faculty in the humanities, arts, and social sciences<em>. </em></p>
                            <p><em><br />
                            </em> </p>
                          </div>
      <h2><a href="#">Hire Staff</a><br />
      </h2>
      <div>
      <p>Your departmental business office should be able to assist you with personnel needs. There are many different employee classifications, and the hiring process differs significantly depending on the position.</p>
      <p>Visit the Illinois Human Resources <a href="http://humanresources.illinois.edu/index.html">website</a> for more information. <br />
       </p>
         </div>
      <h2><a href="#">Find Collaborators</a></h2>
      <div>
      <p>The University of Illinois at Urbana-Champaign is currently developing a &quot;Faculty Experts Database&quot;<em> -</em> a tool that will showcase faculty expertise and help you to connect with colleagues. We will launch that service in Fall 2013, but in the meantime we encourage you to connect with your department head and senior faculty, and your college's senior administration. They can provide suggestions on connecting with other researchers across campus. </p>
      <p>Additionally, the research   institutes that report to the OVCR are hubs of collaboration and interdisciplinary research on campus: </p>
      <p><a href="http://beckman.illinois.edu/">Beckman Institute for Advanced Science and Technology</a></p>
      <p><a href="http://www.igb.illinois.edu">Institute for Genomic Biology</a></p>
      <p><a href="http://www.ncsa.illinois.edu/">National Center for Supercomputing Applications</a></p>
      <p><a href="http://www.prairie.illinois.edu/">Prairie Research Institute</a><br />
       </p>
                            </div>
      <h2><a href="#">Understand Regulatory Requirements</a></h2>
      <div>
      <p>Supporting the   safe and ethical conduct of research is a priority for the Office of the Vice Chancellor for Research at the University of Illinois at Urbana-Champaign. Review a <a href="http://research.illinois.edu/policies/checklist.cfm">checklist</a> to help you get started, or learn more about research <a href="http://research.illinois.edu/policies/index.cfm">policies</a>and required<a href="http://research.illinois.edu/training/index.cfm"> training.</a><em><br />
       </em> </p>
      </div>
                            <h2><a href="#">Share Your Results</a></h2>
      <div>
      <p>The<a href="http://otm.illinois.edu/"> Office of Technology Management</a> can help you understand the intellectual property issues in research activities and your role in commercializing university innovation. </p>
      <p>The  News Bureau generates and coordinates national news coverage of the Urbana-Champaign campus. News Bureau writers cover <a href="http://news.illinois.edu/about_staff.html">specific campus beats</a> and also provide advice for interacting with the media. </p>
      <p>Many departments and colleges also have communications staff to help share news and research results. Find your unit's &quot;Chief Communications Officer&quot; <a href="http://publicaffairs.illinois.edu/campus/cco.html">here</a>. <em><br />
       </em></p>
             </div>
      <h2><a href="#">People in Research: The Names You Need to Know</a></h2>
                                <div>
      <h4><a href="../orgchart.pdf">OVCR Org Chart</a> </h4>
      <p><a href="http://research.illinois.edu/about/staff.cfm"><br>
         Office of the Vice Chancellor for Research</a><br>
       Peter Schiffer, Vice Chancellor for Research<br>
       Melanie Loots, Executive Associate Vice Chancellor for Research<br>
       Jan Novakofski, Associate Vice Chancellor, Compliance<br>
       Nancy Abelmann, Associate Vice Chancellor for Humanities, Arts, and Related Fields
                                  <br>
                                  Howard Guenther, Associate Vice Chancellor, Research Integrity Officer
      </p>
      <p><a href="http://www.ospra.illinois.edu/">Office of Sponsored Programs</a><br>
       Dave Richardson, Director </p>
      <p><a href="http://irb.illinois.edu/">Institutional Review Board</a><br>
       Anita Balgopal, Director</p>
      <p> <a href="http://www.drs.illinois.edu/">Division of Research Safety</a><br>
       Peter Ashbrook, Director</p>
      <p><a href="http://dar.research.illinois.edu/">Division of Animal Resources</a><br>
       Lyndon Goodly, Director</p>
      <p><a href="http://biomedical.illinois.edu/">Division of Biomedical Sciences</a><br>
       Jennifer Eardley, Interim Director
      </p>
                                </div>
      <p> </p>
         </div>
      <!-- <= end .section -->
      <div class="clear"></div>
      <!-- InstanceEndEditable --> </div>
      </div>
      </div>
      <!-- <= end #content --></div>
    <div id="footer">
      <div class="wrapper">
      <div id="address">
      <p><strong>Office of the Vice Chancellor for Research</strong><br>
      Fourth Floor, Swanlund Administration Building, MC-304<br>
      601 E. John Street, Champaign, IL 61820</p>
      </div>
      <div id="email">
      <p><strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a><br>
      <strong>Phone:</strong> 217-333-0034<br>
      <strong>Fax:</strong> 217-244-3716</p>
      </div>
      <p id="c">&copy; 2012 Board of Trustees of the <a href="http://illinois.edu/">University of Illinois</a></p>
      </div>
    </div>
    <!-- <= end #footer --> <script src="../scripts/menu.js"></script> <script type="text/javascript" src="http://emergency.webservices.illinois.edu/illinois.js"></script>
    <!-- InstanceBeginEditable name="footer" --><!-- InstanceEndEditable -->
    <div id="modal"></div>
    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    </script>
    <script type="text/javascript">
    try {
    var pageTracker = _gat._getTracker("UA-6127625-1");
    pageTracker._trackPageview();
    } catch(err) {}
    </script>
    </body>
    <!-- InstanceEnd --></html>

  • Import Business Catalyst site into Dreamweaver {subject edited by moderator}

    I created a website using Dreamweaver CC. I added business catalyst extension and want to use its feature for the site I created within Dreamweaver.  However, every time I tried to open up the business catalyst section, it wants me to create a new trial site.  How do I skip this step and integrate what I already created using Dreamweaver CC?  I don't want to have a trial site. I want to use what I already created using Dreamweaver CC with the business catalyst extension.  Help!!!!

    I'm afraid that's how Business Catalyst works.  You can't just upload any site to BC servers.  You must first create a BC account, create a BC site template, edit your template, activate BC modules, etc...  If all you want is to host your DW site without rebuilding it with BC, I suggest you look for commercial web hosting someplace else. 
    Nancy O.

  • Dreamweaver FTP problems and Yosemite [subject edited by moderator]

    Dreamweaver (newly) installed won't recognize my server (ftp.jakkoke.com). Have checked firewall (no problem), other ftp programs which work just fine, old version of Dreamweaver - works but not with Mac os 10.10 Yosemite. Set up irs.guv - new Dreamweaver communicates with this and other FTP sites just fine. Uninstalled and reinstalled twice. What am I to do?

    Hi jekoke,
    Please follow the steps mentioned below:
    Quit Dreamweaver if it's running.
    Go to Spotlight (magnifying glass icon on the far right hand side of the menu bar) and type "Keychain". Look for the "Keychain Access" application and click to launch it.
    In Keychain Access, you should see a list of Keychain items.  Look in the "Name" column for an item named with the Site Name of your affected site. It will look something like this: "SiteName-SiteServer 0". It will also say "application password" in the "Kind" column.
    Click the item to select it. You should see some properties of the Keychain item appear at the top of the Keychain Access window. As a double check, ensure that the value shown for "Account" is the FTP username.  If it's not, then you may have the wrong item.
    Once you're happy you have the correct item, and it's selected, hit the Delete key to remove it. Leave the application open for now.
    Start Dreamweaver, go to the "Manage Sites" dialog box (Site > Manage Sites...), and edit the affected site. Click on the Servers section and double click the server in the list to edit it.
    Enter the FTP username and password, then click Save to close the edit server box, and click Save again to close the edit site box.
    You should now see that a new Keychain item has been created in Keychain Access (it should have the same name).
    You can quit Keychain Access and Dreamweaver now, then restart Dreamweaver and check if it works now without having to re-enter the FTP details.
    Please let us know if you still face any issues.

  • Dreamweaver and PHPFox? [subject edited by moderator]

    Hello!i d like to know how can i edit the layout with dreamweaver if ii use PHPFox
    Some 1  can help me?

    Make your local root folder (as specified in your site definition) point into the "htdocs" folder, e.g.,
    the path to your local root folder would be something like - C:\My Documents\Web Sites\You_Site_Name\htdocs

  • Can't connect to MySQL [subject edited by moderator]

    Unable to connect to a remote MySQL database with FTP from 'MySQL Connections' despite all connection parameters being valid, just get "an unidentified error has occured" message.

    MurraySummers wrote:
    Actually, I was describing what you need to do to connect to the database with DW. If your attempt to connect is blocked by the firewall (because you are a foreign entity), you will never be able to test the connection parameters in DW. Failing that then you will have to do exactly what Rob is suggesting:
    1. Connect to the database via the host's phpMyAdmin
    2. Export the database's contents to a sql dump file
    3. Import that dump file into a local mysql database
    4. Configure DW to connect to the local database
    5. Build your connection script in DW
    6. When completed, export locally and import remotely (the reverse of #2 and 3)
    7. Upload your script and adjust your connection parameters to use "localhost" for the mysql server name
    It's a tedious and complex series of steps for sure. My preference is to always get an exception added to the host's firewall for my IP address - then I can connect, build and develop directly on the mysql server for the site. (and by the way, I much prefer using Navicat to using phpMyAdmin!)
    What happens if the remote host loses the database file/s?
    I recently had an instance where a certain well known provider in the UK managed somehow to lose all my website files and database files. I was only able to restore the site because I had a local duplicate copy of the site files and database files. I know it don't happen that much but its possible. You must ALWAYS keep an up-to-date version of the wesbite files locally - personally I never connect locally to a remote database because unless you have some 'automated' back-up either on your own local server or the host server this could spell trouble.
    If a client updates their own site I pass the resposibility of backing up the database over to them, as far as I know none do, prefering to leave the responsibility to the host, great if they do - not so good if they don't or lose the files.
    EDITED,
    I think Navicat takes care of the automated database back-up, right? - I dunno about phpMyAdmin though.

  • Validation errors on site [subject edited by moderator]

    I am using Dreamweaver CS6 on XP. Suddenly, errors are showing up on a website I created last year. At that time, W3C validation did not find errors in the same code. The site has worked with no problems (as far as I know) since then. Please note: I am not messing manually with the code--all these errors were created by Dreamweaver. I went in to change a few external links (to internet sites) and found these W3C errors. Now I am afraid to update any of my pages for fear I will jinx things and the site won't work anymore with these errors. What is happening? Why didn't these errors appear last year? Should I worry about them? If so, how can I find out how to fix them?
    Severity
    File
    Description
    Line
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\index.html
    there is no attribute "ice:editable"
    32
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\index.html
    document type does not allow element "div" here; assuming missing "li" start-tag
    34
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\index.html
    document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    35
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\index.html
    document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    36
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\index.html
    document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    37
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\index.html
    document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    38
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\index.html
    document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    39
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\index.html
    end tag for "li" omitted, but OMITTAG NO was specified
    41
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\index.html
    document type does not allow element "meta" here
    43
    Error/Warning Type
    Count
    Total errors:
    9
    Total warnings:
    0
    Total nesting errors:
    0
    Total messages:
    0

    Thanks! I did what you said (took out the ice:editable="*") from the template, repopulated (I think I did that--Dreamweaver automatically asked me if I wanted to use the template for all pages, and I clicked yes). However, there are still errors. All other pages I have looked at are still with errors very similar to the ones listed. Here they are below
    Severity
    File
    Description
    Line
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\buy\index.html
    document type does not allow element "div" here; assuming missing "li" start-tag
    64
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\buy\index.html
    document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    65
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\buy\index.html
    document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    66
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\buy\index.html
    document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    67
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\buy\index.html
    document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    68
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\buy\index.html
    document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
    69
    Error
    C:\Documents and Settings\Piera\My Documents\EnglishinLosAngeles\buy\index.html
    end tag for "li" omitted, but OMITTAG NO was specified
    71
    Error/Warning Type
    Count
    Total errors:
    7
    Total warnings:
    0
    Total nesting errors:
    0
    Total messages:
    0

  • Missing images and CSS styles! [subject edited by moderator]

    I edited a template in dreamweaver and uploaded it to my new website yet it only shows plain text? All of the pretty layout and pictures are missing? How do I upload all of the files the way that it looks in dreamweaver? Because there it looks perfect.
    neilmangicaro.com is the website

    I don't know where you got your "Template"  but in DW, Template.dwt files serve a very specific purpose for maintaining the overall appearance of your site wide pages and common elements such as footers, headers & menus.  If you're not familiar with DW Templates yet, I urge you to read the F1 Help Section > About DW Templates. Dreamweaver Help | About Dreamweaver templates
    A Template.dwt file is basically a common structure shared by many child pages that are spawned from that Template. 
    Nancy O.

  • Studio 8 doesn't run on Windows 7 [subject edited by moderator]

    On a Windows 7 machine, my Studio 8, an upgrade from MX2004 which includes DW-8  no longer works, error msg. states registration problem "reinstall software". Tried everything to fix this issue. Flash 8 (part of Studio 8 works fine) Re-installed MX2004 {remainder of subject truncated here}.
    Help

    Something here may help you...
    Error: Unable to Activate | Macromedia products

  • Editing Wordpress child theme CSS [subject edited by moderator]

    Who can help me with style.css editing in wp child Fount theme? if I want to change all Menu in color purple transparenty?
    Here is a web site link - http://dienoscentrai.kaltanenai.eu . 
    Any ideas or info where I can check or find answers?
    Very thanks!

    /*2015-01-14 Vidas*/
    .sub-menu li a{
      color: #85A967!important;
    #menu_section, .sf-menu>li>a, .prk_gallery_title {
      color: #85A967!important;
    #menu_section .sf-menu a:hover::after{
      background-color: #85A967!important;
    .sub-menu li a{
      background-color: rgba(102, 51, 102, 0.90) !important;
    .sub-menu li a:hover{
      color: #85A967!important;
    .fount_collapsed_menu #menu_section .sf-menu>li.active>a{
      color: #B2CE9A!important;
    .menu_at_top #menu_section .sf-menu a:hover::after, .fount_forced_menu #menu_section .sf-menu a:hover::after, .fount_collapsed_menu #menu_section .sf-menu a:hover::after{
      background-color: #B2CE9A!important;
    .sf-menu>li.fount_hover_sub>a.sf-with-ul{
      color: #85A967!important;
    .fount_forced_menu #menu_section .sf-menu>li.active>a.sf-with-ul, .menu_at_top #menu_section .sub-menu li a:hover, .menu_at_top .fount_forced_menu #menu_section .sf-menu>li.fount_hover_sub>a.active.sf-with-ul:hover, .menu_at_top .fount_forced_menu #menu_section .sf-menu>li.fount_hover_sub>a.sf-with-ul:hover, .menu_at_top #menu_section .sf-menu>li.fount_hover_sub>a.active.sf-with-ul:hover, .menu_at_top #menu_section .sf-menu>li.fount_hover_sub>a.sf-with-ul:hover, .menu_at_top #menu_section .sf-menu>li.fount_hover_sub>a.active.sf-with-ul, .menu_at_top #menu_section .sf-menu>li.fount_hover_sub>a.sf-with-ul, .menu_at_top #menu_section .sf-menu>li>a:hover, .menu_at_top #menu_section .sf-menu>li.active>a, .fount_forced_menu #menu_section .sf-menu>li>a:hover, .fount_forced_menu #menu_section .sf-menu>li.active>a, .fount_collapsed_menu #menu_section .sf-menu>li>a:hover, .fount_collapsed_menu #menu_section .sf-menu>li.active>a{
      color: #85A967!important;

  • Can't unzip trial DW [subject edited by moderator]

    I have Dreamweaver on trial for 30 days, I have to teach web design to my students want to learn programme, testing before buying licence for 5 PC I can't unzip the the files as suggest by the on line learning or Adobe Classroom in a book, can't use support.
    This my question can anyone help?

    Hi thanks for interest
    Usually I use the extract facility in Windows 7, I have Window 8.1 but have not got to grips with it yet, so yesterday I downloaded WinZip free trial and opened the file.  I have just finished a degree in Training and Education and my mind is a bit Zonked!!! So I as not thinking straight.
    I am teaching piloting FETAC Level 4 in Web design, it’s a new module for us to unemployed adults in the West of Ireland.  Training providers have suggested Dreamweaver  so I have to learn it.  It is a long time since I had anything to do with HTML code and then pretty basic, but reading up I think this is pretty basic stuff, not sure though as this is a pilot scheme.  I used Front Page before to produce some sites, looked at web expression but just starting off.  I know I can use notepad but this is the programme I being funded for.  I need to make it use friendly for people who don’t really want to do the subject as well as those who do, as it will be mandatory on my course.
    Any ideas will be gratefully received by those who know much more than I do.
    Thanks Herbert

  • Put dependent files prompt? [subject edited by moderator]

    When I try to upload to the internet this is the message I get all the time can anybody help me with this?
    Put dependent files? Selecting "Don't show me this message again" will hide this dialog until re-enabled from the Site category of the Preferences dialog box. Your most recent choice (Yes/No) will be processed automatically while hidden.

    What don't you understand about it?
    Dependent files are the ancillary files contained in your document like scripts, style sheets, images, videos, etc...  If you click "no," DW will NOT automatically upload those files to your server.  If you click yes, DW will automatically upload those files to your server.
    If you don't want to see this screen again, you can turn it on/off under Edit > Preferences > Site.
    I prefer to keep it turned on.   But that's up to you.
    Nancy O.

  • File not found error on testing server [subject edited by moderator]

    The requested URL /www/first.php was not found on this server.  Apache/2.4.9 (Win64) PHP/5.5.12 Server at localhost Port 80
    Using adobe dreamweaver with wamp server and getting this message while checking any file.Saved all file in ( c:wamp/www/ ) with php extention

    Have you checked to see if first.php file is in the www folder in WAMP?
    Have you aso tried:
    http://localhost/first.php
    or
    Create a folder in the 'www' folder named 'test' and then put the 'first.php' file in the 'test' folder:
    http://localhost/test/first.php
    Do any of those combinations work?

Maybe you are looking for

  • Best Practice Guidelines to be protected from SPAMs

    Hi, Looking for a best practice guideline,inclusive filter rules. thanks,

  • Soundtrack Pro / Flash problems

    Since installing Soundtrack Pro, I have had problems with Macromedia Flash. I installed Soundtrack Pro yesterday and imported MP3 voice-over files for correction & improvement and saved them as .aiff files for import into a Flash .FLA file on my MacB

  • Iphoto 11 Advanced Organization

    Per the manual,  "If you already have an extensive photo file structure saved on your computer, the new import option lets you choose to have the Iphoto point to your original photo files instead of duplicating them in iphoto" Is this still putting t

  • H.264 mov files from Canon 5D Mark II running at incorrect speed?

    What is causing the mov. files recorded at 25 fps Imported from a Canon 5D Mark II PAL to run at 2.5 fps on the Timeline of Premiere Pro ? And it looks like it.This all happened after the Firmware Upgrade 2.0.4 The camera is recording at the right sp

  • Can I still keep photoshop CS4 after installing photoshop CC?

    Hi, I'm intending to upgrade my Photoshop CS4 to CC version, but I would like to keep CS4 in my computer, is it possible to keep these 2 versions?