From: Jaebum Jung on
You could try Control with Row.

Manipulate[Plot[Sin[n
x],{x,-5,5},PlotRange->{-1,1}],Row[{Control@{{n,1,Style["mylabel",24,Bold]},1,3},Style[Dynamic[n],24,Bold]}]]

- Jaebum


Porscha Louise McRobbie wrote:
> Hello,
>
> How can I control the font size of the displayed value of the slider
> variable "n" in the following?
>
> Manipulate[
> Plot[Sin[n x], {x, -5, 5},
> PlotRange -> {-1, 1}], {{n, 1, Style["mylabel", 24, Bold]}, 1, 3,
> Appearance -> "Labeled"}]
>
> I've tried using Style, LabelStyle and Appearance -> {"Labeled",
> Larger}, none of which seem to work.
>
> Thanks in advance,
> Porscha
>
>