Hi to all
The following code is a starting point of a more elaborate Manipulate notebook with other contents.
Three components manipulated upon, one in a horizontal row and the last two in the second row. However I could not find a way to get two frames frames in the second row.
 
Manipulate[
 GraphicsColumn[{Text[
    Style[ StringForm["To be `` not to be", tt], Red, Bold, 40, 
     FontFamily -> "Bodoni"]],
   GraphicsRow[{{Graphics[{Blue, Disk[{0, 0}, r]}, 
       PlotRange -> {{-2, 2}, {-2, 2}}]},
     {Plot[f[x], {x, 0, Pi}]}}]
   }, Frame -> All, AspectRatio -> 0.7],
 {f, {Sin, Cos}},
 {r, 1, 2},
 {tt, {"or", "and"}}]
My questions:
 
 
 - How can I get here a frame around every component in the second row?
- Is it possible to adjust the height of individual rows and in each row the width of individual frames?
- Is AspectRatiothe only option controlling the width of the display area?
Thanks