Can I apply Style to the output of "Labeled" in the below ?
Manipulate[\[Lambda],
Control@{{\[Lambda], 401,
Style[" \[Lambda]", Black, Bold, 24]},
Range[401, 570, 1],
ControlType -> Slider,
ControlPlacement -> Bottom,
Appearance -> "Labeled",
ImageSize -> 200}]
That is on the right part of the Slider :


ControlType->LabeledSliderand drop theAppearance->"Labeled"part. This will give you a much more compact and neater box. – yoda Oct 16 '11 at 23:51ControlPlacement -> Bottomfor theManipulateas opposed the the individual controller, then it does not effect the position of the label in aLabeledSlider. – Simon Oct 17 '11 at 0:42