Skip to main content
Participant
June 22, 2020
Question

Dreamweaver scrolling lag?

  • June 22, 2020
  • 1 reply
  • 499 views

Hello!

Sorry for my noob question, but iam new at dreamweaver and iam new at web dev. I just wanted to ask you guys, if it is normal, that my dreamweaver is very hard lagging while scrolling. In other programs, it is not for example brackets. And its not my pc, i have a 3.5k € pc. Can someone help me if it is normal or not ?

    This topic has been closed for replies.

    1 reply

    Nancy OShea
    Community Expert
    Community Expert
    June 23, 2020

    Which version of DW?

    Which operating system?

    Are you working with error-free code?

    Are you working in a defined local site folder that resides on your primary hard drive?

     

    Try copying and pasting this code into a new, blank document.  SaveAs test.html.  Does it lag?

    <!doctype html>
    <html lang="en">
    <head>
    <meta charset="utf-8">
    <title>Vertically Centered, CSS Flexbox</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <style>
    /**Default mobile-first**/
    .flex-container {
    display:flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    }
    
    .flex-container > div {
    width: 95%;
    padding: 0.5%;
    font-size: 1.25rem;
    border:2px solid teal;
    }
    
    /**responsive image**/
    .flex-container img { max-width: 100% }
    
    figure, figcaption {text-align:center;
    margin: 0 auto;}
    
    /* Media query for tablets & desktops */
    @media only screen and (min-width: 680px) {
    
    .flex-container {
    display:flex;
    flex-flow: row wrap;
    align-items: center;
    }
    
    .flex-container > div {
    width: 40%;
    }
    }
    /**end of media query**/
    </style>
    </head>
    <body>
    <h1>Flexbox Vertically Centered</h1>
    
    <div class="flex-container">
    <div>
    <figure>
    <img src="https://dummyimage.com/1920x1080" alt="placeholder">
    <figcaption>Caption</figcaption></figure>
    </div>
    
    <div><h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iure enim error sit quisquam ut, id, eveniet omnis repellat qui esse nam quae laborum modi voluptatum. Impedit nostrum unde, aliquam molestiae?</p></div>
    </div>
    <hr>
    <!--second row-->
    <div class="flex-container">
    <div>
    <figure>
    <img src="https://dummyimage.com/1920x1080" alt="placeholder">
    <figcaption>Caption</figcaption></figure>
    </div>
    
    <div><h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iure enim error sit quisquam ut, id, eveniet omnis repellat qui esse nam quae laborum modi voluptatum. Impedit nostrum unde, aliquam molestiae?</p></div>
    </div>
    </body>
    </html>
    

     

    Nancy O'Shea— Product User & Community Expert
    Sowar8Author
    Participant
    June 24, 2020

    Hahahaha. Sorry dude.

    I'm not even ready yet. What I meant was really just that when I scroll in the program, so to see my code not on the website, but really only in the program to look at my code, it is pretty much a lagging. With e.g. "Brackets" scrolling was not at all a problem.

    Nancy OShea
    Community Expert
    Community Expert
    June 24, 2020

    A dudette if you please. 

     

    Well, we still don't know what you mean.  Scrolling in DW Code view or Design / Live view is no problem for me on my Win10 workstation.  Can you post a video showing the problem?

     

    In the meantime, please ensure your computer meets or exceeds the minimum system requirements to run Creative Cloud + all other apps you use.
    https://helpx.adobe.com/creative-cloud/system-requirements.html

     

    Nancy O'Shea— Product User & Community Expert