• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Dreamweaver scrolling lag?

New Here ,
Jun 22, 2020 Jun 22, 2020

Copy link to clipboard

Copied

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 ?

Views

421

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 22, 2020 Jun 22, 2020

Copy link to clipboard

Copied

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 & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 24, 2020 Jun 24, 2020

Copy link to clipboard

Copied

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.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 24, 2020 Jun 24, 2020

Copy link to clipboard

Copied

LATEST

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 & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines