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

Viewing 6 posts - 1 through 6 (of 6 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

    #210201
    Dorie Barton
    Participant

    Hi! I had the same issue when setting up my site doriebarton.com using Signify Pro. What helped me was adjusting the logo size in the Customizer — sometimes, on mobile, the logo takes up the entire header space and pushes out the site title.

    Try reducing the logo dimensions slightly, or upload a version optimized for mobile. In my case, once I adjusted that, the site title started showing up again.

    Hope this helps!
    — Dorie

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