Home Analyst Portal
Options

Is It Possible To Turn Off The Capitalization Of Every Word In Request Offerings?

Jason_MeyerJason_Meyer Customer Advanced IT Monkey ✭✭✭

Is It Possible To Turn Off The Capitalization Of Every Word In Request Offerings?


I've spent more time than I care to explaining that we cannot turn that off.

Best Answers

  • Options
    Geoff_RossGeoff_Ross Cireson Consultant O.G.
    Answer ✓

    Hi Jason,

    I hate to make you a liar but it can be turned off.

    The baked in styling is what does it, but you can override with the following snippet in custom.css

    label {
        text-transform: none;
    }
    

    This affects all "labels" in the portal, if you only want do affect the RO page, you will need to be a little more specific with this rule.

    Geoff

  • Options
    Simon_ZeinhoferSimon_Zeinhofer Customer Ninja IT Monkey ✭✭✭✭
    Answer ✓

    I received that code from John Doyle some time ago (we had the same struggle with these capital letters :D ), where it only affects Request offerings

    /*Stop Capital Letters*/
    #requestOfferingCont label {
    	text-transform: none!important;
    }
    

    Because we wanted the capital letters to disappear inside work/configuration items as well, we also added

    .control-label {
    	text-transform: none!important;
    }
    

    in the custom.css

Answers

  • Options
    Geoff_RossGeoff_Ross Cireson Consultant O.G.
    Answer ✓

    Hi Jason,

    I hate to make you a liar but it can be turned off.

    The baked in styling is what does it, but you can override with the following snippet in custom.css

    label {
        text-transform: none;
    }
    

    This affects all "labels" in the portal, if you only want do affect the RO page, you will need to be a little more specific with this rule.

    Geoff

  • Options
    Simon_ZeinhoferSimon_Zeinhofer Customer Ninja IT Monkey ✭✭✭✭
    Answer ✓

    I received that code from John Doyle some time ago (we had the same struggle with these capital letters :D ), where it only affects Request offerings

    /*Stop Capital Letters*/
    #requestOfferingCont label {
    	text-transform: none!important;
    }
    

    Because we wanted the capital letters to disappear inside work/configuration items as well, we also added

    .control-label {
    	text-transform: none!important;
    }
    

    in the custom.css

  • Options
    Jason_MeyerJason_Meyer Customer Advanced IT Monkey ✭✭✭

    Much appreciated Simon. I'll share with our admin.

  • Options
    Geoff_RossGeoff_Ross Cireson Consultant O.G.

    Glad it sorted

Sign In or Register to comment.