Home Analyst Portal
Options

Change the case of Request Offering prompt text

Martyn_FearnMartyn_Fearn Customer Adept IT Monkey ✭✭

Does anybody know how to change the case of the text prompt on Request Offerings?  Not liking the 'shouty' uppercase.

I'm sure I saw a KB article about it somewhere but can't find it now.

Best Answer

  • Options
    joivan_hedrickjoivan_hedrick Cireson Consultant Advanced IT Monkey ✭✭✭
    edited June 2016 Answer ✓
    Aye, this one you can do pretty quickly with some CSS. Paste the following into your custom.css file located in inetpub\CiresonPortal\CustomSpace\ folder. 

    .editor-label {
       text-transform: none;
    }


Answers

  • Options
    joivan_hedrickjoivan_hedrick Cireson Consultant Advanced IT Monkey ✭✭✭
    edited June 2016 Answer ✓
    Aye, this one you can do pretty quickly with some CSS. Paste the following into your custom.css file located in inetpub\CiresonPortal\CustomSpace\ folder. 

    .editor-label {
       text-transform: none;
    }


  • Options
    Giovanni_PeriniGiovanni_Perini Customer IT Monkey ✭
    Hello, I have tried this, but still all the words in a service request question start with a captial. Where exactly do you put the .editor-label in the custom.Css?

  • Options
    Candice_YeudallCandice_Yeudall Customer Advanced IT Monkey ✭✭✭

    the code that you need for 6.x is


    #requestOfferingCont .control-label {
       text-transform: none;
    }

Sign In or Register to comment.