Skip to main content
Participant
January 4, 2026
Question

I'm having trouble with the folder structure in Dreamweaver 2021

  • January 4, 2026
  • 2 replies
  • 375 views

hello everyone I am having trouble with my folder structure in Dreamweaver CC 2021 when I create my Dreamweaver template and when I create the div tags I tried to create my style sheet but it always has a ../ it says go One Directory up when I create my root folder I always create a subfolder I'm always used to Dreamweaver a CS6 I just recently switched the Dreamweaver to CC 2021 and in Dreamweaver CS6 when I went to Penn Foster Career school when they taught web design we used Dreamweaver CS6 I attended pennfoster career school back in  20112 and the book I have focused on the template and and linking your pages together and the style sheets and everything was correct when I did the projects back then so now that I switched to Dreamweaver CC 2021 it's telling me to go One Directory up am I supposed to create another folder after I create my root folder It's Tricky please understand that I love using DreamWeaver I just need a guidance and working with Dreamweaver CC 2021 cuz I'm not used to it if anyone can give any help to what I need to do feel free to give your expertise!!

    2 replies

    Community Expert
    January 17, 2026

    Thanks @virgo l for posting the live link, it makes things much clearer.

     

    From your site structure, we can see that you are using Dreamweaver Templates in the standard way. As @Nancy OShea explained, all your HTML pages are located at the root of your site, and your template file is automatically stored inside the Templates folder.

     

    Because the Templates folder is one level deeper than your pages, Dreamweaver correctly uses ../ in relative paths for CSS files, images, and other assets. This is normal and expected behavior. When Dreamweaver creates child pages from the template, it automatically adjusts the paths depending on the file location. This mechanism has not changed between Dreamweaver CS6 and CC 2021.

     

    So your template is not “disconnected”. It is simply located where Dreamweaver always stores templates.

    In your file lakishasenior.dwt, we can clearly see the three editable regions:

     

    • doctitle, where you can change the page title for each page (Home, About Me, Warm Springs, etc.)
    • head, where you can add page specific CSS or JavaScript, for the concerned child page, if needed
    • contentarea, where each page’s main content is placed

     

    From a technical point of view, everything looks correct and your template is working as intended. You do not need to rebuild your website.

     

    The only minor issue I noticed is the space in your background image filename:

     

    background-image: url(images/winter%20_bg.png);

     

    It works, but it is better practice to avoid spaces in file names.

     

    If something still doesn’t behave as expected, please describe one concrete example (page name and file involved). But, from what we can see, the template structure itself is correct.

    Nancy OShea
    Community Expert
    Community Expert
    January 4, 2026

    Site management is exactly the same in CC as it was in CS.

     

    This assumes your Local Site folder is defined and correctly pointing to a folder on your computer's primary hard drive.  Example, C:\MyTestSite\

     

    There are 3 types of link paths:

     

    <a href="https://example.com/folder/file_name.html">Absolute Link</a>
    <a href="../server/folder/file_name.html">Site Root Relative Link</a>
    <a href="folder/file_name.html">Document Relative Link</a>​

     

     

    For ease of use, most users choose Document Relative Links.  See screenshot.

    image.png

     

    Templates are saved to your Local Site's Templates folder.

    C:\MyTestSite\

    child_page1.html

    child_page2.html

    index.html

      - Templates\

         main_template.dwt

     

    I hope that makes sense. 

    Post back if you need more help.

     

    Nancy O'Shea— Product User & Community Expert
    virgo lAuthor
    Participant
    January 14, 2026

    Hello again all my pages are good and connected but my template it's still separated from my pages I took some pictures I've had a cold looks in my temperament and how it looks in my index page when I converted index page to a temple it this is how it looks so how do I reconnect my template do I have to build my website all over again

    Nancy OShea
    Community Expert
    Community Expert
    January 15, 2026

    We can't see attached files. This forum's image viewer is broken. 😞

     

    Embed images directly into a reply with the toolbar's picture icon, see screenshot.

    Screenshot 2025-12-18 133800.png

     

    But pictures don't tell the whole story.  We need to see the code.

     

    For quickest answers, upload the Template.dwt file to your server and post the URL here.

    It would also be helpful to see a child page spawned from your Template.

     

    Nancy O'Shea— Product User & Community Expert