Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

This article demonstrates how to use Page Extensions to adjust the CSS for all AdminPortal pages dynamically so that you don't have to worry about upgrades overwriting your stylesheet.

Changing the BreadCrumb Colour

This Page Extension changes the breadcrumb background colour to a dark grey for example but more substantial CSS changes could be applied here which and can be applied to specific pages by entering the page you want it to run on or by using the forward slash to represent ALL pages

Configuration

  1. Click on the Setup tab

  2. Click Page Extensions

  3. Click the Add button

  4. Enter the following information
    Name: Change BreadCrumb Colour via CSS
    Page: / (enter a forward slash to make the script apply to all AdminPortal pages)

    jQuery("#crumb").css('background-color', '#47515b');
  5. Click Save

  • No labels