Versions Compared

Key

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

This is an example of modifying the appearance of a Qsign screen:
Image RemovedImage Added

  1. Locate the stylesheet to be changed, reference to the diagram above will indicate which class or ID needs to be altered to achieve the desired effect.
    The default stylesheet for QSign is 'QSign'.

    Expand
    titleChange the colour of the home icon to green.

    Locate the ‘.fa-home’ homeclass in the style sheet content. If ‘.fa-home’ home’ is not found, then one can be created at the end of the existing content:

    Code Block
    .fa-home {
       
    
    	color: green !important;
    
    }

Change the colour of the home icon to green

Locate the ‘.fa-home’ class in the style sheet content. If ‘.fa-home’ is not found, then one can be created at the end of the existing content:

.fa-home {

    color: green !important;

...



  1. Expand
    titleChange the colour of the header to white and background color to amber.

    Locate the ’.

...

  1. tblHeaderListclass in the style sheet content. If ’.

...

  1. tblHeaderListis not found, then one can be created at the end of the existing content:

    Code Block
    .tblHeaderList {

...

  1. 
    	color: white;

...

  1. 
    	background-color: #F6931E;
    }



    Expand

...

  1. title

...

  1. Change the background colour of the List to lightblue.

    Locate the ‘.carousel-

...

  1. innerclass in the style sheet content. If ‘.carousel-

...

  1. inneris not found, then one can be created at the end of the existing content:

    Code Block
    .carousel-inner{

...

  1. 
        background-color: lightblue;
    }



    Expand

...

  1. titleChange the text colour of the ‘List’ header to red.

    Locate the ‘.

...

  1. tblMeetingList>thead>tr>thclass in the style sheet content. If ‘.

...

  1. tblMeetingList>thead>tr>this not found, then one can be created at the end of the existing content:

    Code Block
    .tblMeetingList>thead>tr>th {

...

  1. 
    	color:red;
    }



    Expand

...

  1. titleChange the text colour of the meeting list to red.

    Locate the ‘.

...

  1. tblMeetingList>tbody>tr>tdclass in the style sheet content. If ‘.

...

  1. tblMeetingList>tbody>tr>tdis not found, then one can be created at the end of the existing content:

    Code Block
    .tblMeetingList>tbody>tr>td {

...

  1. 
    	color:red;
    }



    Expand

...

  1. titleChange the text colour of ‘Tomorrow’ header in the list to red.

    Locate the ‘.tomrw

...

  1. tdclass in the style sheet content. If ‘.tomrw

...

  1. tdis not found, then one can be created at the end of the existing content:

    Code Block
    .tomrw td {

...

  1. 
    	color:red;
    }



    Expand

...

  1. titleChange the line colour of meeting separator to blue.

    Locate the ‘.tblMeetingList th, .tblMeetingList

...

  1. trclass in the style sheet content. If ‘.tblMeetingList th, .tblMeetingList

...

  1. tris not found, then one can be created at the end of the existing content:

    Code Block
    .tblMeetingList th, .tblMeetingList tr {

...

  1. 
    	border-bottom: 2px solid blue !important;
    }



    Expand

...

  1. titleChange the live message colour to green.

    Locate the ‘.

...

  1. screenMessageclass in the style sheet content. If ‘.

...

  1. screenMessageis not found, then one can be created at the end of the existing content:

    Code Block
    . screenMessage {

...

  1. 
    	color: green;
    }



    Expand

...

  1. titleChange the navigation button colour to yellow.

    Locate the ‘.left.carousel-

...

  1. controland ‘.right.carousel-

...

  1. controlclass in the style sheet content. If ‘.left.carousel-

...

  1. controland ‘.right.carousel-

...

  1. controlis not found, then one can be created at the end of the existing content:

    Code Block
    .left.carousel-control {

...

  1. 
    	color: yellow;

...

  1. 
    }

...

  1. 
    
    .right.carousel-control {

...

  1. 
    	color: yellow;

...

}

  1. Click Save.
  2. Review the effect of the changes by returning to QSign Profiles and click in the profile to preview the display.
  1. Locate '#customheader' ID in the stylesheet content:
    #customheader {
    margin: 0px;
    border-style: solid;
    border-width: 1 0 1 0;
    border-color: #ADADAD;
    position: relative;
    width: 100%;
    top: 10px;
    text-align: center;
    float: left;
    }
  2. Change the colour of the border to green by changing 'border-color: #ADADAD;' to 'bordercolor: #00FF00;'.
    
    }



  3. Click Save.
  4. Review the effect of the changes by returning to QSign Profiles and click  in the profile to preview the display.