Hi
I would like to have the Edit Form label background colors match the background colour of column headings in the main grid.
It looks like css only allows you to change all the labels not individual labels – any ideas?
Thanks
4 Answers
It's doable with CSS, and you need prefix class name with #TR_<FIELD>
e.g.
#tr_name .CaptionTD {
background: url("images/ui-bg_glass_85_dfeffc_1x400.png") repeat-x scroll 50% 50% #DFEFFC;
color: #2E6E9E;
font-weight: bold;
}
Forgot to attach the css change result:
<img src="http://easycaptures.com/fs/uploaded/727/thumbs/2979107367_m.jpg" border="0">
Thank you for the reply – is there a comprehensive list of all the style changes available?
Your Answer