Home Forums Pro Themes Signify Pro Site Title Not Displaying on Mobile

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #196668
    Corinna Brenner
    Participant

    Hi everyone,

    I’m using the Signify Pro theme for my WordPress site and I’ve run into a problem with the site title not showing up on mobile devices.

    On desktop, both the logo and the site title are displayed perfectly.
    But when I view the site on a mobile device, only the logo is visible — the site title is completely missing.

    I’ve already checked the Customizer settings under “Site Identity” to make sure the option to display the site title is enabled. It’s working fine on desktop but not on mobile.
    Thanks in advance for your help!

    #196686
    Psink
    Keymaster

    @corinna, Yes the site title by default is hidden for smaller devices. You can add this CSS in the Additional CSS to show the site title on smaller devices

    .wp-custom-logo .site-identity {
    display: block !important;
    }

    #196734
    Corinna Brenner
    Participant

    @psink
    Thank you very much. Unfortunately I can’t adjust the size of the title. Because the size of the title for the desktop version is simply adopted.

    #196748
    Psink
    Keymaster

    @corinna, You can add the below CSS to adjust the font size of site title and site description

    @media screen and (max-width: 567px) {
    .site-identity .site-title{
    font-size: 18px;
    }

    .site-identity .site-description{
    font-size: 12px;
    }
    }

    Please adjust the font size value as per your requirement

    #196758
    Corinna Brenner
    Participant

    @psink
    thank you very much

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