I can't see the problem from your markup but one approach I tend to use it that of classes. So for example:
In my CSS is can simply refer to:Code:<div class="generaltext">mytext</div>
This strict method of keeping track of the HTML elements I'm using and how I've styled them helps me avoid accidentally modifying the styling for something inadvertently.Code:div.generaltext { ... }




Reply With Quote