I'm trying to center the title text on my Alert control. I'm using the following CSS right now:

mx|Alert{
  text-align: center;
}

The problem is that the above code centers my alert content as well, not just the title text. What selector do I need to access just the title of the alert control?

Edit:

I'm using the 4.x SDK and Spark.

Code:

Alert.Show();

link|improve this question

What version of the SDK are you using? 3.x or 4.x? If the latter, are you using a spark or mx skin? – Wade Mueller Dec 20 '10 at 19:44
feedback

2 Answers

up vote 1 down vote accepted

Use titleStyleName to declare a CSS class that can be used to style the title, then add styles to that class:

mx|Alert {
    titleStyleName: 'alertTitle';
}

.alertTitle {
    text-align: center;
}

Should work for Spark if I'm not wrong.

link|improve this answer
+! but be sure to correct the style name. There are no dashes in it. – www.Flextras.com Dec 20 '10 at 19:57
Fixed it, thanks. – BoltClock Dec 20 '10 at 19:58
feedback

Take a look at titleStyleName.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.