How to set the "About" at the right top conner to be blue?

623
4
10-03-2011 02:30 PM
LeiZhou
New Contributor III
I need to set the "About" at the right top conner to be blue.  In Header ControllerWidget.xml, I use the code as the following:
<label>About</label>
       <font color="#0099FF"></font>


It seems flex viewer does not have this option.  Can I change the color of "About"? Thanks!
Tags (2)
0 Kudos
4 Replies
TonyContreras
Occasional Contributor
0 Kudos
KevinHighland
Occasional Contributor II
I believe it would be something like this:

       <label>
    <![CDATA[<font color='#0099FF'>About</font>]]>
       </label>


Not sure if this would work though. The <label> fields may not support character data.
0 Kudos
LeiZhou
New Contributor III
Not woking. Thanks a lot!
This label does not have html property. To change it, I have to change all the background color.

I believe it would be something like this:

       <label>
    <![CDATA[<font color='#0099FF'>About</font>]]>
       </label>


Not sure if this would work though. The <label> fields may not support character data.
0 Kudos
RobertScheitlin__GISP
MVP Emeritus
Steven,

  Have you looked in the HeaderControllerWidget.mxml code? I'm sure as soon as you look in there you will see the linkBox group which has the label for the about and will be able to figure out how to change the color of the label.
0 Kudos