Dear All, I got the following code. I think this consists of a simple structure of "label = Style[..]" and
" Labeled[ Grid[..], label, Bottom]".
It was based on these discussions and modified from the advice by the technical support of Wolfram. Thank again.
Manipulate[
label = Style[
Row[{"X-axis width of ", y, If[y == 1, " Pi-unit", " Pi-units"],
"(left) and ", w, If[w == 1, " Pi-unit", " Pi-units"], "(Right)"}
], FontSize -> 18, Bold, Blue]; (*endof Style*)
Labeled[
Grid[{{ (*the sample graphics*)
Show[Plot[Sin[x], {x, 0, y*Pi}], ImageSize ->Small],
Show[Plot[Cos[x], {x, 0, w*Pi}], ImageSize -> Medium]}}
],(*endof Grid*)
label, Bottom (*Can be Bottom, Left, Top, or Right*)
],(*endof Labeled*)
{y, 1, 10, 1}, {w, 1, 10, 1}
](*endof Manipulate*)