Changing Date To Lowercase

  • Unknown's avatar

    Hello,

    Is there a way to change just the date to a normal mix of upper and lowercase? For example, right now my site (with the Penscratch 2 theme) has the date in all caps: TUESDAY, JANUARY 15, 2019. Is there a way to change it to Tuesday, January 15, 2019?

    Thank you!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi sassone

    Sure, I’ve written some custom CSS which should help with this. Please paste the following code in to My Sites > Customise > CSS:

    /*removes caps on post date */
    .entry-date {
    	text-transform: none;
    	}

    If you would prefer to remove the caps across the whole line of text, this CSS can be used instead:

    /*removes caps on post date line */
    .entry-meta {
    	text-transform: none;
    	}

    You’re welcome to reply here or start a chat if you need any further help :)

  • Unknown's avatar

    That worked! Thanks for the help.

  • The topic ‘Changing Date To Lowercase’ is closed to new replies.