zerotechz Yeah it can definitely be rather frustrating sometimes. I had to 'learn-the-hard-way' that it is prudent to make at least one backup of the current existing css (or html) script before embarking upon any code experimentation.
I usually just use an admin utility thread to basically serve as makeshift code save points.
If you wanted an easier way to globally modify particular elements, you could always test out some of these, for example:
a { /*ANCHOR LINK TEXT*/
color: #000; /*SET COLOR*/
}
p { /*PARAGRAPH TEXT*/
color: #000; /*SET COLOR*/
}
h1, /*HEADER 1 TEXT*/
h2, /*HEADER 2 TEXT*/
h3, /*HEADER 3 TEXT*/
h4, /*HEADER 4 TEXT*/
h5, /*HEADER 5 TEXT*/
h6 { /*HEADER 6 TEXT*/
color: #000; /*SET COLOR*/
}
* { /*UNIVERSAL SELECTOR*/
color: #000; /*SET GLOBAL TEXT COLOR*/
}