my_header not working

I have my own header file which I copied mostly from the Elegant header. It works great in Forms but Grids don’t add the CSS class correctly… any thoughts?


<!-- <img src="top.png" />-->
<style>
#lin1_col1 { padding-left:9px; padding-top:7px; height:27px; overflow:hidden; text-align:left;}			 
#lin1_col2 { padding-right:9px; padding-top:7px; height:27px; text-align:right; overflow:hidden;  font-size:12px; font-weight:normal;}
#lower { padding-left:9px; padding-top:7px; overflow:auto; text-align:left; font-size: 12px; font-weight: normal;}
</style>

<div style="width: 100%">
 <div {NM_CSS_FUN_CAB} style="height:11px; display: block; border-width:0px; "></div>
 <div style="background-color:#FFFFFF; border-width:0px 0px 1px 0px; border-style: dashed; border-color:#ddd; display: block">
 	<table style="width:100%; border-collapse:collapse; padding:0;">
  	<tr>
    	<td id="lin1_col1" {NM_CSS_CAB}><span>{left}</span></td>
      <td id="lin1_col2" {NM_CSS_CAB}><span>{right}</span></td>
    </tr>
		<tr>
			<td id="lower" colspan="2" {NM_CSS_CAB}><span>{lower}</span></td>
		</tr>
  </table>		 
 </div>
</div>


Dave

Re: my_header not working

How are you adding it to the grid?

PHP function, then calling that function from an event, or?

Regards,
Scott.

Re: my_header not working

Using the template function of SC to upload my template as written. I just worked around it by creating a second header for grids that I typed in the grid css call.

D.