Menu

formatting hidden details, i.e. background color

karlk
2014-08-27
2014-08-29
  • karlk

    karlk - 2014-08-27

    Is it possible to change the formatting of hidden details and notes, for example the background color, and if so, how?

    For your information: if I edit the style in the html section of the editor, it disappears altogether.

     

    Last edit: karlk 2014-08-27
  • jokro

    jokro - 2014-08-27

    karlk,
    Only the formatting options in the dialog editor are available (bold, centering etc.) No background color.
    Regards
    Jodi

     
  • Volker Börchers

    The background color can be changed with the HTML source editor:

    <html>
      <head>
        <style type="text/css">
          <!--
            p { margin-top: 0 }
            body { font-size: 12pt; font-family: SansSerif; background-color: yellow; }
          -->
        </style>
    
      </head>
      <body bgcolor="yellow">
        <p>
          hurz
        </p>
      </body>
    </html>
    

    The old fashioned bgcolor attribute seems to work while the background-color style is stripped by the editor (after first recognizing it).

    Volker