While designing/changing the page layout, I have a coloring for each of div/class elements as needed. That enables me to clearly see the structure of the layout.
While testing/presenting the page layout with the actual content, I have a different coloring scheme.
I need to switch between the two often. How can I accomplish this?
Please help.
While testing you could add a class to your
htmlorbodytage.g.
<html class="testingMode">and then in your stylesheet you could have overrides to your other styles
e.g.
Before you go live you can remove the class of
testingModefrom yourhtmltag and those overriding styles will not be applied.