I am TRYING to override some script generated tags and need some advice.
The tags that are produced are:
<div class=Section1>
<p class=pQuickPlace><span style='font-size:10.0pt;font-family:Verdana'>
Is there a way to have a tag above these to where those will be ignored?
Thanks!I believe those inline styles will take priority over anything you can apply.ugh =/
Ok thanksYou can override the class but not the inline styleUsing the DOM you can change themcan't get past the inline ones that I know of. If you can get your own CSS into the mix u can put a <div id="whatever"> around that content and should take control of the styles by then saying "#whatever .Section1 { }"
The tags that are produced are:
<div class=Section1>
<p class=pQuickPlace><span style='font-size:10.0pt;font-family:Verdana'>
Is there a way to have a tag above these to where those will be ignored?
Thanks!I believe those inline styles will take priority over anything you can apply.ugh =/
Ok thanksYou can override the class but not the inline styleUsing the DOM you can change themcan't get past the inline ones that I know of. If you can get your own CSS into the mix u can put a <div id="whatever"> around that content and should take control of the styles by then saying "#whatever .Section1 { }"