Events Made Easy Forums How do I … Capital letters in the day of the week.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #54976
    Anonymous
    Inactive

    When I use the short code #d, the day of the week comes out with a lowercase letter in the beginning. How do I change this to a Capital letter?

    #54977
    Franky
    Keymaster

    #d doesn’t show the name of the day of the week. Do you mean #D ?
    Also: in which language?

    #54986
    Anonymous
    Inactive

    Hello, one solution is to put your #d in a span tag with a class :
    <span class="capitalize_day">#d</span>

    And put some css code in ‘Settings->Other->Extra html header’ like :

    <style type="text/css">
    span.capitalize_day {
    text-transform:capitalize;
    }
    </style>
Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘How do I …’ is closed to new topics and replies.
Scroll to Top