Change CSS styling for title of footer in Dyad Theme

  • Unknown's avatar

    I am trying to change the styling of footer title, i,e. change it normal camel case rather than all uppercase. How do I do that?

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

  • Unknown's avatar

    Hi there,
    I could only find the following letters in Uppercase at the bottom of your blog, the ones that say: “Read it all” and “Your interests”. If you want to change the titles of this widgets, add the following CSS:

    .wf-active .widget h3 {
    font-family: “Tangerine”,cursive;
    font-style: normal;
    font-weight: 400;
    text-transform: initial;
    font-size: x-large;
    }

    “initial” uses only a capital letter at the beginning, you can also use “lowercase” to have all letters in lowercase or “capitalize” to have all initial letters of every single word capitalized. After changing the font to initial, the letter became too small, that’s why I added the font-size property which you could also change to the size you want.
    I hope this helps.

  • Unknown's avatar

    I am familiar with CSS. But the point is I am not able to locate the place I need to type the code to change the styling. Can you please help me that.

  • Unknown's avatar

    Sure, go to WP Admin > Appearance > Customize > CSS.

  • The topic ‘Change CSS styling for title of footer in Dyad Theme’ is closed to new replies.