Copy link to clipboard
Copied
I am really battling with Dreamweaver. It does not apply any style changes. It might add an element (html or bootstrap) sometimes. Even if I try to change the style of anything (background, type - it doesn't matter) it just does not apply and becomes totally unresponsive. I had no less than 4 adobe agents looking into the matter, they have no clue. I uninstalled DW, reinstalled, used an earlier version, no change. I signed in as a different user, no change. I had the imac checked, nothing wrong there. I disconnect internet, no change. I work in code view, no change.
Copy link to clipboard
Copied
How are you changing the files? Are you saying it is freezing editing a CSS file? Inline styles? Are the files locally stored on your computer or are they stored on a network or online storage somewhere? What Mac OS are you using?
Copy link to clipboard
Copied
Hi, thank you for taking the time to assist! The problem is with bootstrap! When i work in html all is fine. Locally stored. iMac, OS Sequoia 15.0.1
Copy link to clipboard
Copied
I had no less than 4 adobe agents looking into the matter, they have no clue.
By @joank32284658
Sounds about right!
Quite often, when style rules are not applied to your document, the reason is that the external file has bot been linked to the document.
As an example, if the external file is called styles.css, then there should be a link in the head section of your document that reads similar to <link rel="stylesheet" href="/css/styles.css">.
Copy link to clipboard
Copied
...it just does not apply and becomes totally unresponsive.
By @joank32284658
============
Ensure that your site is defined (Site > Manage Sites). And the local site folder is read & writable on your Mac HD.
If you continue to have problems, Restore Preferences.
https://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver.html
Copy link to clipboard
Copied
Hi, thank you. Did all of those. No change. Cannot handle bootstrap
Copy link to clipboard
Copied
Can you post a loom of what is going on with split view on?
Copy link to clipboard
Copied
Are you saving files after making changes (Cmd + S)?
Are you refreshing your screen with F5 (function keys enabled)?
Copy link to clipboard
Copied
Hi, thank you. Will try tye refreshing screen!
Copy link to clipboard
Copied
It goes without saying that you should NOT be editing native Bootstrap CSS or JS files. Doing so could cause total failure of the framework.
If you must make changes to Bootstrap's default styles, use the pre-defined Bootstrap Helper Classes. See below.
https://www.w3schools.com/bootstrap/bootstrap_ref_all_classes.asp
Or in rare cases, use a separate stylesheet for your custom CSS code.
<!--Minified Bootstrap CSS-->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!--CUSTOM STYLES-->
<link href="css/custom_styles.css" rel="stylesheet">
Validate document and fix reported errors.
Go to Window > Results > Validation... Check document.