Case:
Custom CSS with some nice color for the links, structured as classes - like:
.green{}
.red{}
If I edit a page and edit the source code of the <a> tags that I am interested in, I am unable to set the class to one of my custom ones. class="red" is being omitted when I save the page.
I am able to change ALL links in the entire browser by setting a custom color to the entire <a> tag in the CSS, like:
a {
color: red;
}
However that is not what I want - I want be explicit about what links I wanna color.
Also I notice that my custom class is in the source code when I am in edit mode of a page, but as soon as I hit the Save button it gets omitted from the final HTML. Why?