Consider the following:
printMessage[cellexpr_]:=CellPrint@Cell[cellexpr,"Message",
CellLabel->"(slave Kernel)",ShowCellLabel->True,
CellFrameMargins->0,Background->LightBrown,
CellLabelAutoDelete->False];
printMessage[BoxData[RowBox[{RowBox[{"Sin", "::", "\"argx\""}], ": ",
"\"\\!\\(Sin\\) called with \\!\\(2\\) arguments; 1 argument is expected.\""}],
StandardForm]]
Sin[1,1];
-->
(slave Kernel) Sin::argx: Sin called with 2 arguments; 1 argument is expected.
During evaluation of In[1]:= Sin::argx: Sin called with 2 arguments;
1 argument is expected. >>

One can see that the auto-generated Message inherits the style of the previous printed Cell. Why this happens? And how to prevent this?

BoxData[RowBox[{RowBox[{"Sin", "::", "\"argx\""}], ": ", "\"\\!\\(Sin\\) called with \\!\\(2\\) arguments; 1 argument is \ expected.\""}]];– Simon Apr 17 '11 at 1:45printMessage[BoxData[...]]andSin[1,1]are within the same cell separated by new lines. If there are entered on new cells, the reported effect can not be observed. – Sasha Apr 17 '11 at 1:54FontSizeand other options. – Simon Apr 17 '11 at 2:19