Versions Compared

Key

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

...

  • #header .navbar-inverse .navbar-inner
    identifies the top dark bar, an example to change its background color may be:

    Code Block
    languagecss
    titleExample
    #header .navbar-inverse .navbar-inner { background-color:#c79731 }
  • #dashboard-wrap
    identifies the main page container, the background image can be changed overriding its property:

    Code Block
    languagecss
    titleExample
    #dashboard-wrap { background-image:url("http://www.yourwebsite.com/link_to_your_image.jpg") }
  • #sidebar
    identifies the left side menu, an example to change its background color and menu items may be:

    Code Block
    languagecss
    titleExample
    #sidebar { background-color:#f9bd3d; }
    #sidebar .nav > li.active > a { background-color:#fdebc5; color:#000000; }
    #sidebar .nav > li > a:hover { background-color:#fdebc5; }

Role

...

-based class

On #dashboard-wrap element (which wraps all the cms content) a role-based class is included to allow CSS customization based on the user role.

  • #dashboard-wrap .cmsrole-admin
    available when role = admin

  • #dashboard-wrap .cmsrole-superuser
    available when role = superuser

  • #dashboard-wrap .cmsrole-user
    available when role = user