CSS header Title Customization

  • Unknown's avatar

    Hello, I am using the Cubic theme and I would like to know if there’s a css snippet for the following.

    1. Is is possible to change the text of the title in the feature image from uppercase to regular?

    2. If you click on the post of the main page it will take you to the article. Would it be possible to change the tittle of the post from uppercase to normal?

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

  • Unknown's avatar

    Hi there,

    Yo need to add custom CSS
    Go to MySite >Customize > CSS
    and the below code
    Try this for feature image at homepage

    .archive .entry-title, .blog .entry-title, .search-results .entry-title {
    text-transform: none;
    }

    Try this for the title of a post

    body.page .entry-title, body.single .entry-title, .page-title {
    text-transform: none;
    }

    Let me know if that works.

  • The topic ‘CSS header Title Customization’ is closed to new replies.