When editing css in design view it is very time consuming to view the changes. Can the text view of the css be changed to show a preview of the css on a page so that changes can be seen when applied.
Announcement
Collapse
No announcement yet.
CSS Preview
Collapse
X
-
Seconding (sevening?) this suggestion. Switching between the stylesheet and the page is needlessly convoluted, especially since the preview window is completely redundant. Using @import isn't a particularly neat solution either, since I tend to keep all the styles in the Actinic stylesheet and delete any pre-existing ones.
Comment
-
Started a v8 site the other week and spent 2 hours editing and compacting the actinic.css to a manageable size and structure before starting on the site proper
Switching between the stylesheet and the page is needlessly convoluted, especially since the preview window is completely redundant. Using @import isn't a particularly neat solution either, since I tend to keep all the styles in the Actinic stylesheet and delete any pre-existing ones.
Comment
-
Originally posted by jontStarted a v8 site the other week and spent 2 hours editing and compacting the actinic.css to a manageable size and structure before starting on the site proper
I'm not sure it was the best way to go about it, but I found the CSS theme to be pretty unusable without replacing it wholesale. Part of the issue is undoubtedly that I have a much better understanding of my own structures than I do of other people's by virtue of having written it, so writing selectors for them is much easier. The nice thing about the theme was that it wasn't cluttered with tables so I didn't need to hunt them down like with V7. However, hunting down orange text and replacing crazy table structures with more semantically accurate structures seems to have replaced the frustrating Design | Text searches. It is a far more preferable situation, though. Actinic's default themes seem to espouse tables over unordered lists for anything other than bulleted lists, resulting in the CSS themes being ruined by completely pointless tables showing up in random layouts.
Originally posted by pinbrookI now use @import and use custom css as this is infintly better than the constantly switching to preview
Comment
-
Originally posted by RobSollarsI'm not sure it was the best way to go about it.
I was tempted to scrap the stylesheet but this was a clients site so need to future proof against the posibility of the layout being changed and then re-applied again and it falling on it's knees. I saved about 150 lines of white space from the default stylesheet.
Comment
-
Originally posted by jontI was tempted to scrap the stylesheet but this was a clients site so need to future proof against the posibility of the layout being changed and then re-applied again and it falling on it's knees. I saved about 150 lines of white space from the default stylesheet.
I wouldn't recommend going through it manually, but using shorthand should shave quite a bit off the file size.
Edit: http://www.cleancss.com/ does a pretty good job of this.
Comment
-
Originally posted by RobSollarsI'm not sure if you caught this, but the default stylesheets completely neglect any CSS shorthand properties.
It is a known fact that several people worked on the CSS and it shows with varying conventions. As with anything in life trying to pick up other peoples work is difficult enough let alone when several hands have been stirring the mix
Comment
Comment