Edited template in Dreamweaver, once uploaded...another story!

I purchased a template and began to edit it in Dreamweaver 8. It looked great until I uploaded it.  Some of the background doesn't show, as well as certain icons and logos.  Everything has been uploaded using Yahoo! Webhosting.  I uploaded the layout.css and style.css files and still no go.  This is how the website looks now: http://www.gyrlspeedracingteam.com This is how it should look: http://gyrlspeedracingteam.com/25875-b  Any help would be appreciated!
Thanks,
Andreana

Alright, I created a js folder and woo hooo.  The other images that were actually there I moved to the images folder...did not have to do that with my previous template, just upload and go.  I have to admit that I googled absolute and relative links and I see the difference.  I guess I've been "linking" like that for so long, I wouldn't know otherwise.  It seems to be something I would do once I get my site nearly completed.  Thanks so much to Gary and bregent!  I guess I can mark this answered.

Similar Messages

  • Can't edit template in dreamweaver

    even though I have not set up any non-editable regions.

    Sounds like you have some bad code in your template.  Can you upload the file to some web space that you control and paste a link to that page here?  Failing that, can you paste the code from your template file here (you cannot use the email option to do the latter - you must come to the webforum).

  • I can't make an editable template in dreamweaver CS5 help!

    Here is my problem. I insert an editable region, and that works just fine. However, when trying to create a page from this template, I can't edit the CSS. Normally, I click the area of the CSS I want to edit, and go to modify>templates>make attribute editable. When I create a page, nothing is editable. I'm lost.
    Here is the code I'm using so far: (I have not added a 'make attribute editable' in this code yet)  Thanks!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <link rel="stylesheet" type="text/css" href="autumnwind12.css" />
    <link rel="icon" href="http://www.autumnwindstudios.com/leaficon.ico" type="image/x-icon" />
    <link rel="shortcut icon" href="http://www.autumnwindstudios.com/leaficon.ico" type="image/x-icon" />
    <link rel="stylesheet" href="http://www.autumnwindstudios.com/bluelight/humbnailviewer.css" type="text/css" />
    <script src="http://www.autumnwindstudios.com/bluelight/thumbnailviewer.js" type="text/javascript">
    * Image Thumbnail Viewer Script- ? Dynamic Drive (www.dynamicdrive.com)
    * This notice must stay intact for legal use.
    * Visit http://www.dynamicdrive.com/ for full source code
    </script>
    <script type="text/javascript" src="expando.js">
    /* Expando Image Script ?2008 John Davenport Scheuer
       as first seen in http://www.dynamicdrive.com/forums/
       username: jscheuer1 - This Notice Must Remain for Legal Use
    </script>
    <meta name="keywords" content="T-shirts, graphics, digital art, graphic design, media" />
    <meta name="description" content=" " />
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <style type="text/css"><!--
    #hintbox{ /*CSS for pop up hint box */
    position:absolute;
    top: 50px;
    background-color: black;
    width: 200px; /*Default width of hint.*/
    padding: 10px;
    border:1px solid silver;
    font:normal 11pt arial;
    color:white;
    border-right: 3px solid silver;
    border-bottom: 3px solid silver;
    line-height:18px;
    z-index:100;
    visibility: hidden;
    .hintanchor{ /*CSS for link that shows hint onmouseover*/
    font-weight: bold;
    color: navy;
    margin: 3px 8px;
    --></style>
    <script type="text/javascript">
    * Show Hint script- ? Dynamic Drive (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit http://www.dynamicdrive.com/ for this script and 100s more.
    var horizontal_offset="14px" //horizontal offset of hint box from anchor link
    /////No further editting needed
    var vertical_offset="0" //horizontal offset of hint box from anchor link. No need to change.
    var ie=document.all
    var ns6=document.getElementById&&!document.all
    function getposOffset(what, offsettype){
    var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
    var parentEl=what.offsetParent;
    while (parentEl!=null){
    totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
    parentEl=parentEl.offsetParent;
    return totaloffset;
    function iecompattest(){
    return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
    function clearbrowseredge(obj, whichedge){
    var edgeoffset=(whichedge=="rightedge")? parseInt(horizontal_offset)*-1 : parseInt(vertical_offset)*-1
    if (whichedge=="rightedge"){
    var windowedge=ie && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-30 : window.pageXOffset+window.innerWidth-40
    dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
    if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
    edgeoffset=dropmenuobj.contentmeasure+obj.offsetWidth+parseInt(horizontal_offset)
    else{
    var windowedge=ie && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
    dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
    if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure)
    edgeoffset=dropmenuobj.contentmeasure-obj.offsetHeight
    return edgeoffset
    function showhint(menucontents, obj, e, tipwidth){
    if ((ie||ns6) && document.getElementById("hintbox")){
    dropmenuobj=document.getElementById("hintbox")
    dropmenuobj.innerHTML=menucontents
    dropmenuobj.style.left=dropmenuobj.style.top=-500
    if (tipwidth!=""){
    dropmenuobj.widthobj=dropmenuobj.style
    dropmenuobj.widthobj.width=tipwidth
    dropmenuobj.x=getposOffset(obj, "left")
    dropmenuobj.y=getposOffset(obj, "top")
    dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+obj.offsetWidth+"px"
    dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+"px"
    dropmenuobj.style.visibility="visible"
    obj.onmouseout=hidetip
    function hidetip(e){
    dropmenuobj.style.visibility="hidden"
    dropmenuobj.style.left="-500px"
    function createhintbox(){
    var divblock=document.createElement("div")
    divblock.setAttribute("id", "hintbox")
    document.body.appendChild(divblock)
    if (window.addEventListener)
    window.addEventListener("load", createhintbox, false)
    else if (window.attachEvent)
    window.attachEvent("onload", createhintbox)
    else if (document.getElementById)
    window.onload=createhintbox
    </script>
    <style type="text/css"><!--
    /* END MAIN*/
    body {background-color:#4E5869; center 0 no-repeat;}
    .bar {background-color:#ffd39b;
    width:980px;
    height:36px;
    margin-left:0 auto;
    margin-right:0 auto;
    #container {
    width: 980px; background: #fff; margin: 0 auto;
    border:1px solid gray;
    #banner{margin-left:auto 0px;margin-right:auto 0px;}
    .c01 {margin-top:10px;
    width:960px;
    font-family:arial,sans-serif;
    font-size:12pt;
    font-weight:normal;
    letter-spacing:0.85em;
    text-align:right;
    color:darkslategray;
    .c02 {margin-left:10px; margin-top:10px;
    width:225px;
    font-family:arial,sans-serif;
    font-size:10pt;
    font-weight:normal;
    letter-spacing:0.15em;
    text-align:right;
    color:darkslategray;
    #main {margin:0 auto;margin-top:40px;width:940px;
    padding-bottom:100px;font-family:arial,sans-serif;font-size:12pt;color:#5c5c5c;line-height :150%;
    border-top:1 px solid gray;}
    a {text-decoration:none;}
    #footer {margin-left:760px;
    width:980px;
    font-family:arial,sans-serif;
    font-size:10pt;
    font-weight:normal;
    color:darkslategray;
    a {text-decoration:none;}
    /* BEGIN MAIN */
    -->
    </style>
    </head>
    <body>
    <!--MENU-->
    <div class="menu">
    <ul>
    <li><a href="http://www.autumnwindstudios.com">Home</a></li>
        <li> <a href="#" id="current">Graphic Services</a>
          <ul>
        <li><a href="http://www.autumnwindstudios.com/design.html">Print Media</a></li>   
        <li><a href="http://www.autumnwindstudios.com/illustration.html">Illustration</a></li>
            <li><a href="http://www.autumnwindstudios.com/portraiture.html">Portraits</a></li>
        <li><a href="http://www.autumnwindstudios.com/cartoons.html">Cartooning</a></li>   
        <li><a href="http://www.autumnwindstudios.com/signs.html">Signs / Banners</a></li>   
          </ul>
        </li>
        <li><a href="#">Photo Enhancement</a>
          <ul>
        <li><a href="http://www.autumnwindstudios.com/enhancement.html" style="text-decoration:none;">Artistic Photo Effects</a></li>
          </ul>
        </li>
    <li><a href="#">Photo Colorizing</a>
          <ul>
        <li><a href="http://www.autumnwindstudios.com/colorization.html" style="text-decoration:none;">B/W to Color</a></li>
        <li><a href="http://www.autumnwindstudios.com/colorization.html" style="text-decoration:none;">Color Enhancement</a></li>
          </ul>
        </li>
    <li><a href="#">Photo Restoration</a>
          <ul>
        <li><a href="http://www.autumnwindstudios.com/restoration.html" style="text-decoration:none;">Photo Restoration</a></li>
        <li><a href="http://www.autumnwindstudios.com/retouch.html" style="text-decoration:none;">Photo Retouching</a></li>
    <li><a href="http://www.autumnwindstudios.com/wedding.html" style="text-decoration:none;">Wedding Retouching</a></li>   
          </ul>
        </li>
    <li><a href="#">Info</a>
          <ul>
        <li><a href="http://www.autumnwindstudios.com/info.pdf">Pricing &amp; Terms</a></li>
        <li><a href="http://www.autumnwindstudios.com/resume.pdf">Resume</a></li>
        <li><a href="http://www.autumnwindstudios.com/Autumn_Wind_Studios.pdf">Download Portfolio Sample</a></li>
          </ul>
        </li>
        <li> <a href="#">Contact</a> 
          <ul>
        <li><a href="http://www.autumnwindstudios.com/contact.html">Contact Form</a></li>
      </ul>
        </li>
      </ul>
    </div>
    <!--END MENU-->
    <!--MAIN CONTENT-->
    <div id="container">
    <div id="banner"><img src="http://www.autumnwindstudios.com/awsbanner1.jpg" width="980" alt="banner" /></div>
    <div class="c01"> <img src="media.jpg" alt="social media buttons" width="269" height="41" hspace="10" vspace="0" border="0" align="right" usemap="#Map" />
              <map name="Map" id="Map">
                <area shape="rect" coords="222,1,270,41" href="https://twitter.com/#!/Autumn_Studios" alt="twitter" />
                <area shape="rect" coords="175,1,223,43" href="https://www.facebook.com/pages/Autumn-Wind-Studios/273834332699643" alt="facebook" />
                <area shape="rect" coords="128,0,174,41" href="https://accounts.google.com/ServiceLogin?service=blogger&passive=1209600&continue=http://w ww.blogger.com/home&followup=http://www.blogger.com/home&ltmpl=start#s01" alt="blogger" />
                <area shape="rect" coords="45,0,126,40" href="http://laoscura.deviantart.com" alt="deviant art" />
                <area shape="rect" coords="1,1,46,42" href="http://www.linkedin.com/profile/edit?trk=hb_tab_pro_top" alt="linked in" />
              </map></div>
    <div class="c02"><a href="http://www.autumnwindstudios.com/main.html"><img border="0" src="jtheader.jpg" width="225" alt="autumn wind logo" /></a><br />
    Visit our original site.</div>
    <div id="main">
    </div>
    <!--FOOTER-->
    <div id="footer"><a href="#top"><img border="0" src="eraser_opt.jpg" width="200" alt="eraser" /></a><br /><br /></div>
    <!--END FOOTER-->
    </div>
    <!--END MAIN CONTENT-->
    </body>
    </html> 

    >Here is my problem
    Your problem HERE is that this is not the Dreamweaver forum... this forum talks about the forums themselves
    How to Select a Forum http://forums.adobe.com/docs/DOC-1015

  • Edit template in Dreamweaver

    I have always put <head> part of page in my template, this than makes this part the same on all pages using that template. But I've now been told that the Meta keywords should be match to keywords on individual pages, so how do I now make this part of the template nolonger part of the template? Without having to start from scratch. Sorry bit confusing but can't seem to get my head round it.

    You can add an editable region for the Meta tags into your main Template.dwt file.
    This is the code on a child page from my Template.  Notice where the editable regions are.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <!-- InstanceBegin template="/Templates/Template-test.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <!-- InstanceBeginEditable name="meta" -->
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <meta http-equiv="Last-Modified" content="24 February, 2011  at 16:43:39" />
    <meta http-equiv="description" content="blah, blah, blah....." />
    <!-- InstanceEndEditable -->
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Unique Page Title</title>
    <!-- InstanceEndEditable -->
    <!-- InstanceBeginEditable name="head" -->
    <link href="main.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
    background: url(unique-bg.jpg);
    </style>
    <!-- InstanceEndEditable -->
    </head>
    <body>
    <div id="wrapper">
    <div id="content">
    <!-- InstanceBeginEditable name="content" -->
    Unique Page content goes here
    <!-- InstanceEndEditable -->
    <!--end content --></div>
    <div id="footer">
    <!-- InstanceBeginEditable name="footer" -->
    Unique footer text goes here
    <!-- InstanceEndEditable -->
    <!--end footer --></div>
    <!--end wrapper --></div>
    </body>
    <!-- InstanceEnd -->
    </html>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • How do I add image upload to web app edit template?

    How do I add image upload to web app edit template. When creating fields I am selecting image from the field type. But the only way to upload and image is when I create the web app item within the admin. The option to upload an image is not available when the user submit web form opens.
    Wont send any of these questions through this email anymore but really needed assistance.
    Thanks,
    Gordon

    On the Details tab of the Web App setup, under Web App Item Options; have you ticked "Allow File Upload" and specified a Default Upload Folder?

  • My website only shows the bottom half of my page once uploaded to my cPanel direct from Dreamweaver CS5.

    My website only shows the bottom half of my page once uploaded to my cPanel direct from Dreamweaver CS5.
    Please see here www. cmenco .com
    It has a slider and pictures above like the image below:
    This does not show and I have tried everything.
    Help will be appreciated.

    Your slider images in the images folder on your site seem to be corrupted.
    Are you on Godaddy hosting by any chance?

  • How to edit joomla templates in dreamweaver

    hi all.
    I am working with flex,when i crossed joomla its attracted me lot,they are providing so many templates i want to edit that templates (php)using
    dreamweaver and also want to create new templates using dreamweaver.
    can any one help to lead me..
    please help any suggession...
    cheers,
    B.venkatesan.

    Work in Code View only.   
    Install a local testing server for your system:
    WAMP for Windows
    http://www.wampserver.com/en/
    XAMPP for Windows
    http://www.apachefriends.org/en/xampp-windows.html
    XAMPP for Mac
    http://www.apachefriends.org/en/xampp-macosx.html
    MAMP for Mac
    http://www.mamp.info/en/downloads/index.html
    Setting up a PHP environment in Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html
    Joomla! Tutorials
    http://www.lynda.com/Joomla-1-5-tutorials/creating-and-editing-custom-templates/666-2.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Uploading css template to dreamweaver

    I need to upload some css templates to dreamweaver but can't
    figure out how to do it yet.

    Huh? Upload CSS templates to DW? You mean you need to add a
    CSS-based
    template page to your DW site? Is it a *.dwt page? If so just
    copy it into
    the Templates folder at the root level of the site.
    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
    ==================
    "ntnsllc" <[email protected]> wrote in
    message
    news:gj91bs$j0k$[email protected]..
    >I need to upload some css templates to dreamweaver but
    can't figure out how
    >to do it yet.

  • Blog Starter Template in Dreamweaver CC

    I am doing a favor for a co-worker. I am building her a website from scratch for a blog she wants to start regarding Real Estate Law. She already purchased a domain with Gator, therefore where I upload this site is already established. I was going to build this site in Muse, however I discovered Muse does not have a Blog Widget. So I'm going to build this in Dreamweaver and I noticed a Starter Template for Blogs, though it looks more of a layout. Once I upload and design this site for her it is out of my hands, and I want to know she can update her blog on her own. Is this blog template in Dreamweaver going to enable her to do so? If not, please advise on how I would go about doing that, thanks.

    Many web hosts provide a one-button simple way of installing WordPress from your server's CPanel.  Honestly, I think that's what your friend is going to need; not a Dreamweaver site.
    Then find a free or commercial WP Theme with most of the functionality your friend's blog will require.  If you can't find a Theme that contains everything on her wish list, fear not b/c there are plenty of WP Plugins or Widgets to fill in the gaps. Both Themes and Plugins are installed via the WP Dashboard.
    WordPress › Blog Tool, Publishing Platform, and CMS
    WordPress › Theme Directory « Free WordPress Themes
    WordPress › plugin « Tags « WordPress Plugins
    Nancy O.

  • Projects are blurry once uploaded/saved?

    Everytime I save something in PSE 11 that has text or graphics, I feel like the clarity is not even remotely close to what I was seeing in PSE. The whole thing often has a blurry/pixelated look to it. I am sure that any graphics are large files for clarity and in PSE 11 they appear very clear and sharp, I am usually saving in .png The resolution is 300.
    What can I do to make sure that they save crystal clear and sharp so that once they are uploaded (to somewhere like Facebook for a timeline cover) that they don't loose that sharpness to text and graphics that I see in PSE? What is the best format to save in? I don't  have this issue with pictures I am editing, it seems to just be stuff I am making. Business cards, timeline covers, forum signatures,etc.

    For things such as timeline covers, I have no choice but to upload to Facebook. But I seem to loose clarity on text/graphics once uploaded, even though I've seen other make covers with PSE products and theirs are sharp and crips looking.
    Should I save in another format? When I save in .png it asks about interlace. Do I choose none or interlace? I usually choose none.

  • Editing text in Dreamweaver CS4 on Mac 10.6.2 causes paragraph ends to disapear

    Editing text in Dreamweaver CS4 on Mac 10.6.2 causes paragraph ends to disappear.
    When adding bold in design view (strong) to two words at the start of my paragraph the last line of the paragraph disappears. This is somewhat worrying as it means any editing I do in dreamweaver could do massive amounts of damage to the content.
    We are pasting the original content into the code view so as to strip the formating Dreamweaver then decides to take the last line break in the source code paragraph and then delete it see example below:
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean dignissim nisi id risus varius ut scelerisque massa consectetur. Vestibulum non tortor augue, sit amet dictum lacus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Curabitur ultrices felis et dui tincidunt sit amet tristique est pulvinar. Nulla a lectus quis erat ornare ultricies. Sed ac elementum magna. Nulla aliquet accumsan nulla. In dictum accumsan tortor eget consequat. Suspendisse potenti. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc et orci eu augue condimentum sodales quis id mauris. Nam enim nisi, convallis eu volutpat non, malesuada quis nulla. Sed auctor nulla et tellus vehicula lacinia interdum odio lobortis vehicula lacinia interdum odio.</p>
    So when applying Strong with the Bold button in the design view to the first words 'Lorem ipsum' the last part of the paragraph 'lobortis vehicula lacinia interdum odio' will be deleted. Bizare and very dangerous especially for Annual Report content.
    Any experience of similar or solutions would be greatly received.
    PS. I have restarted, repaired permissions, checked dreamweaver is up to date trashed plist's and removed duplicate fonts.

    Mac+Win=Me wrote:
    It could be a problem in the templates.
    In all honesty, I just tried pasting text into the Design section of a page.
    It doesn't even work on my Mac, and it took three tries to get it to actually paste in VIsta.
    I had to go to the code and reformat it after it did paste, but it eventually went.
    I don't work with templates much.
    Well, that actually makes me feel a little better, if it makes sense to feel better to learn that it could be the expensive software and not just us. I guess I will view this as an opportunity to improve me coding speed :-) Thanks for the feedback.

  • Photoshop templates to dreamweaver

    Hello...when I drag the Photoshop template into Dreamweaver,
    it becomes a jpeg. How can I use a Photoshop template in
    Dreamweaver and have the capability to change the text and add text
    over the template?? With the background as a jpeg, I cannot type
    over it unless I use AP Div, which I don't want to use.
    Thank you!

    Google SiteGrinder....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "elechal23" <[email protected]> wrote in
    message
    news:f61bgv$pjm$[email protected]..
    > Well the template came with a psd file and a few
    pictures. But my problem
    > is
    > that I did not really want to type everything out in
    photoshop, I wanted
    > to do
    > it in dreamweaver but I cannot type over the slices
    unless I use AP Div,
    > correct? Or is there another way to type over photoshop
    slices in
    > dreamweaver?
    >

  • Editable Regions in Dreamweaver?

    Hello, I have a bit of a dilemma in Dreamweaver right now,
    and was wondering if anyone may know of a potential solution. I'll
    try to be as clear and understandable as possible.
    When I go to build a webpage layout in Photoshop for
    importing in to Dreamweaver, once I use the slice tool to prepare
    my page for output, my page is turned into images. I have no
    problem with this, except for when I need to place certain editable
    elements (such as text, for example), over them inside of
    Dreamweaver, which is where it becomes a problem.
    My question is, how would one go about creating these
    "backgrounds" (is that what they are called?) in a fashion that
    allows content to be placed there, without Dreamweaver treating it
    as an image and therefore resulting in the disability to place
    content there?
    I hope somebody is able to understand this and will be able
    to help me out.. thanks in advance! =)

    Taking a Fireworks comp to a CSS-based layout in Dreamweaver
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt1.html
    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
    ==================
    "djdk224" <[email protected]> wrote in
    message
    news:fma2r1$8f9$[email protected]..
    > Hello, I have a bit of a dilemma in Dreamweaver right
    now, and was
    > wondering if
    > anyone may know of a potential solution. I'll try to be
    as clear and
    > understandable as possible.
    >
    > When I go to build a webpage layout in Photoshop for
    importing in to
    > Dreamweaver, once I use the slice tool to prepare my
    page for output, my
    > page
    > is turned into images. I have no problem with this,
    except for when I need
    > to
    > place certain editable elements (such as text, for
    example), over them
    > inside
    > of Dreamweaver, which is where it becomes a problem.
    >
    > My question is, how would one go about creating these
    "backgrounds" (is
    > that
    > what they are called?) in a fashion that allows content
    to be placed
    > there,
    > without Dreamweaver treating it as an image and
    therefore resulting in the
    > disability to place content there?
    >
    > I hope somebody is able to understand this and will be
    able to help me
    > out..
    > thanks in advance! =)
    >

  • Let me first say the DW CC SUCKS!!!  Why can't I edit templates in CC that I created in DW CS6?

    When I try to edit templates, ANY template, that I created in CS6, I can't.  The tool bars are grayed out.  The properties panel is grayed out.  It acts as though it is in LIVE mode, but it isn't, or not that I can see.  I'm trying to edit a link in my footer, but every time I try to place the cursor on the link to select it, the cursor is a pointing finger.  I can't select it to edit it, unless I go edit the code.  This brings up another question about editing templates.  This involves the same link in the previous question.  In CS6, I edited this link with the new link to a page.  When I SAVE ALL, I get the box asking if I want to update all pages that use the template, I say yes.  The code reflects the change, but the link doesn't change in LIVE view or Preview in a Browser.  It still tries to load the old page, which I have deleted.  This happens in DW CS6 too.  I want to use CC because I am paying for it.  But I have found it fights me every inch of the way.  Luckily I have CS6.  But it isn't very good either.  Any ideas?

    See screenshot:  If you can, switch to Design view.
    If you can't, you must be using Templates based on Fluid Grid layouts. See link below:
    Provide "Design View" for Fluid Grid Webpages
    Nancy O.

  • Error about Template in dreamweaver mx 8

    Hello every 1
    This is dinesh from S Naidu Online, i m getting problem while
    doing template in dreamweaver, i have done 2 part in my website
    1-> top,left [ menus ], bottom , 2-> right side part
    for editing page or matter, my template height is 500px , when i m
    trying to do single page with template then the size of that page
    is going above 700px so i m getting white patch on left side, how
    to overcome this problem. ?
    pls help,,,
    Thanx in Advance n Regards !!!
    Dinesh
    S Naidu Online.

    Templates do no control page layout. They only control page
    content. If
    you have layout problems, it's not due to the template, it's
    due to you
    method of building the page. Can you show me the page,
    please?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Snaidu Design" <[email protected]> wrote in
    message
    news:e7g37b$5oh$[email protected]..
    > Hello every 1
    >
    > This is dinesh from S Naidu Online, i m getting problem
    while doing
    > template
    > in dreamweaver, i have done 2 part in my website
    > 1-> top,left [ menus ], bottom , 2-> right side
    part for editing page or
    > matter, my template height is 500px , when i m trying to
    do single page
    > with
    > template then the size of that page is going above 700px
    so i m getting
    > white
    > patch on left side, how to overcome this problem. ?
    >
    > pls help,,,
    >
    > Thanx in Advance n Regards !!!
    > Dinesh
    > S Naidu Online.
    >

Maybe you are looking for