CSS Customizer (Canard) only permits block letters in blog tagline

  • Unknown's avatar

    I’d like to write my blog (danielwaynemoore.com) tagline in small caps or standard capitalization, but the theme I’m using (Canard) only seems to recognize the coding for all caps.

    Here is the CSS code I found on a WP forum to include a tagline, which you need a premium plan to add:

    .site-branding .site-description {
    display: block;
    }

    I’ve changed “block” to “lowercase,” “small,” and “medium” but the tagline only disappears.

    Any ideas?
    Thanks

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

  • Unknown's avatar

    Hi there, the CSS display property is used for a different purpose. For text capitalization, you would use the text transform property like this.

    .site-description {
        text-transform: none;
    }

    You can read more about the text-transform property and the acceptable values here.

  • The topic ‘CSS Customizer (Canard) only permits block letters in blog tagline’ is closed to new replies.