4
votes

Is there a way to make a minor modification of the default appearance of cells in the current Notebook without specifying the all set of options? For example, I wish to have all Cells with style "Text" in the current Notebook by default having

 CellMargins -> {{Inherited, Inherited}, {0, Inherited}}

All the other options should be inherited from the default stylesheet. How can I achieve this?

1
you should use Format menu and choose Edit Stylesheet. - Sasha

1 Answers

4
votes

Open up Edit stylesheet from Format menu.

Then paste there the following:

Cell[StyleData["Text"], 
 CellMargins -> {{Inherited, Inherited}, {0, Inherited}}]

EDIT: Adding a screen-shot:

enter image description here