I have a client who is using Contribute to edit their website after I build the templates for them and I have used Dreamweaver to lock certain aspects of the template like the navigation. The whole point is to keep them form making ANY sort of change to the uneditable region. My problem is that everytime they edit a file in contribute it adds useless and un-necessary in-line css to all of my <p> tags, header tags, etc.
Here is an example of what is happening below. The very first p tag shouldn't even be there and any other inline css you see was not there originally. This is all in an uneditable region of a template made i dreamweaver.
Code:
<p style="margin-top: 0; margin-bottom: 0;"> </p> <div id="nav-container"> <ul id="nav" style="margin-bottom: 0"> <li id="nav-left"><a href="index.html">Home</a></li> <li class="nav-norm"><a href="products.html">Products</a></li> <li class="nav-norm"><a href="clearance.html">Specials</a></li> <li class="nav-norm"><a href="support.html">Support</a></li> <li class="nav-norm"><a href="resellers.html">Resellers</a></li> <li id="nav-right"><a href="contact.php">Contact</a></li> </ul> </div> </div>
<div id="content"><p style="margin-top: 0; margin-bottom: 0;"> </p> <div id="page-header2"> <h1 style="margin-bottom: 0"><!-- InstanceBeginEditable name="Page Header" -->Header Goes Here<!-- InstanceEndEditable --></h1> </div>
Anyone ever deal with this before? It is driving me nuts and is rendering the whole contribute program useless if it keeps it up.
Thanks for the help!
|