Okay
  Public Ticket #365404
Font is displaying only lower case
Closed

Comments

  • B started the conversation

    I am having trouble being able to display my fonts with the first letter of a sentence being in caps. I have tried the different options in the Salient / Typography configurator - however no success. 

    Please help how I can display the fonts exaclty the way I type it into the system.

  •  8,448
    Tahir replied

    Hey!

    Add this into the Custom CSS box located in your Salient Options panel :
    span {
        text-transform: capitalize;
    }
    
    Thanks 


    ThemeNectar Support Team 

  • B replied

    Thank you for the reply but this has made the first letter in each word capitalized.

    I would like the first letter of a sentence being in caps.

  •  8,448
    Tahir replied

    Hey!

    Add this into the Custom CSS box located in your Salient Options panel :
    span:first-letter {
        text-transform: uppercase;
    }
    
    
    span {
        display: inline-block;
    }
    
    Thanks 


    ThemeNectar Support Team 

  • B replied

    Sorry still not working. I am basically just looking to be able to represent the copy as I write it in the WYSISIG.

    For example if you go to: http://www.byronsilver.com/home2 ,the first sentance should read:

    - therefore the first sentence should say\' Byron Silver is a creative strategist,

    - not: Byron silver is a creative strategist.

  •  8,448
    Tahir replied

    Hey Again!

    Remove the above css and use this :

    * {
        text-transform: initial;
    }


    Thanks


    ThemeNectar Support Team