Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

As an example, the following script will replace the background colour for the banner from the detault colour to white;


  • Expand
    titleExample ScriptClick here to view CSS Script ...


    Panel
    borderColorgrey
    bgColor#F8F8F8
    borderStyledashed


    Info
    titleExample CSS Script

    .page-header {
    background-color: white !important;
    }
     
    .page-header-image {
    width: 200px;
    max-height: 200px;
    }
     
    .page-header-middle {
    font-weight: bold;
    color: red;
    }
     
    .content-footer {
    margin-bottom:20px;
    font-weight: bold;
    color: red;
    }
     
    .page-footer {
    background-color: lightgray;
    font-size: 12px;
    }




...