Home Forums Free Themes Academic Text Transform

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #56067
    masad
    Participant

    How do change Site Title to uppercase?
    Also, how to change link style to lowercase?
    I have edited style.css but nothing happened

    #56113
    wensolutions
    Keymaster

    Hello @masad,

    To change the site tile to uppercase use below given CSS.

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    #site-header .site-title a {
        text-transform: uppercase;
    }

    Similarly to change the link style to lower case paste below given CSS in Additional CSS location .

    a {
        text-transform: lowercase;
    }

    Hope this helps .

    Best Regards!!

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.