Quote:
Originally Posted by DiapDealer
Could you post the css file (the whole file) as an attachment for testing?.
|
I think I may have found the issue:
The original name for the file was "!Styles.css" so the file was always at the top of my directory listing and easier to find.
I renamed a copy of the file to "test.css" and linked the new name in the header of the html to re-test.
The new name works correctly.
So it looks like the loading of the css into Sigil automatically with the "!" as part of the name causes an issue. Inside the html in Sigil the link shows as:
<link href="../Styles/%21test.css" rel="stylesheet" type="text/css"/>
When you unlink/relink and/or load manually the name shows as:
<link href="../Styles/!test.css" rel="stylesheet" type="text/css"/>
This is causing the issue in the cleanup.
EDIT:
I guess I could rename to "AAAStyles.css"...