Home General Discussion

Save Button Move / Larger

CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭

Dear All,

Is there a way to move the save button or make it larger for people to see on the Service Catalog?

Kind Regards

Daniel

Best Answers

  • CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭
    Answer ✓

    The top bit of code:


    .blocks > div:nth-child(1){


    display:none;


    }

    is used to remove items all extra stuff associated with knowledge base on service catalog.

Answers

  • Nicholas_VelichNicholas_Velich Cireson Consultant Ninja IT Monkey ✭✭✭✭

    Moving elements with CSS isn't possible, but making an element larger certainly is. Many organizations also choose to color this button differently so it stands out.

    To modify any HTML element using CSS, you will first need to find the element you want to modify. This can be done using the inspect button within your browser tools (Ctrl + Shift + C in Chrome, for example). Once you find the element, you can apply the new CSS styling. More CSS info can be found here: https://www.w3schools.com/css/

  • Shane_WhiteShane_White Cireson Support Super IT Monkey ✭✭✭✭✭

    Hi @CaterhamITSupport

    Might be a bit overkill but try this, you can always tweak it!

    .btn-lg > div{

    font-weight: bold;

    font-size: large !important;

    }

    Paste this into Custom.css

    Thanks,

    Shane

  • CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭

    Can the colour be changed on just the save button only? Any code to do this?

  • Shane_WhiteShane_White Cireson Support Super IT Monkey ✭✭✭✭✭

    .fa-check:before {

    color: lawngreen;

    font-size: x-large

    }

    Sorry forgot to add this with it :)

    Thanks,

    Shane

  • CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭

    so what is the code to change the colour of the save button red?

  • Shane_WhiteShane_White Cireson Support Super IT Monkey ✭✭✭✭✭

    .fa-check:before {

    color: red;

    font-size: x-large

    }

    This one will make the tick red

    Thanks,

    Shane

  • CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭

    where should i put the code / in what file?

  • Shane_WhiteShane_White Cireson Support Super IT Monkey ✭✭✭✭✭

    Custom.css in custom space :-)

    Thanks,

    Shane

  • CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭

    it seems to now remove the whole catalog of items?

    So i have the following code in there already:

    #servicecat-content {display:none!important;}


    .blocks > div:nth-child(1){


    display:none;


    }


    And yours after?

  • CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭

    that removed all items in service catalog now.

  • CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭
    Answer ✓

    The top bit of code:


    .blocks > div:nth-child(1){


    display:none;


    }

    is used to remove items all extra stuff associated with knowledge base on service catalog.

  • CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭

    Using your code and altering it slightly has fixed this!

    Thank you.

    Daniel

  • CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭

    I noticed that it doesnt work on Safari on an ipad? It works on PC.

  • CaterhamITSupportCaterhamITSupport Member Advanced IT Monkey ✭✭✭

    it works on an ipad now

Sign In or Register to comment.