Copy link to clipboard
Copied
I am currently working with a HTML/JS template that is setup for Bootstrap. (I am not using it for bootstrap). I typically do my changes and such in Code-Live view. Every once in a while (and especially today) Dreamweaver is running extremely slow! When I make table size percentage changes in the CSS I get the wheel of death for a good 10 plus seconds. I also have lag when switching from style.css to my source code.
I am currently running Dreamweaver CC 2017.5 Release 9878 Build
Mac Specs:
27" Mac
3.2 Ghz I5
32 GB DDR 3
Nvidia GT 755M 1GB
1 TB SSD
Activity Monitor is showing only 11.11 GB of Memory currently used.
Is it lagging on all pages/all sites, or just certain ones?
Some things to look for in the code of lagging pages, if only certain ones cause issues...
1. Protocol relative links in the head section (links starting with // vs http). Changing them to http during development will fix it if that's the issue.
2. Certain javascript code, especially remotely hosted ones. Try commenting out <!-- code --> all of the scripts and see if the page lags. If it doesn't un-comment the scripts one by one. If you fi
Copy link to clipboard
Copied
Is it lagging on all pages/all sites, or just certain ones?
Some things to look for in the code of lagging pages, if only certain ones cause issues...
1. Protocol relative links in the head section (links starting with // vs http). Changing them to http during development will fix it if that's the issue.
2. Certain javascript code, especially remotely hosted ones. Try commenting out <!-- code --> all of the scripts and see if the page lags. If it doesn't un-comment the scripts one by one. If you find a script causing an issue, making and linking to a local copy will usually get rid of the lag. Relink to the external one before uploading.
3. Using lots of the @import rule in your css can cause lagging. Linking using the <link> tag in the <head> section instead seems to fix that.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now