• Resolved ddmccaleb

    (@ddmccaleb)


    Is there a means to hide the site title on mobile only? Right now when I hide the site title it hides on desktop, tablet, and mobile, but I’d like to hide it on mobile only. Any suggestions? Many thanks for your help and for the great theme.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Theme Author Themeisle

    (@themeisle)

    Hi @ddmccaleb,

    Apologies for delay and missing this thread.

    You can do it with custom CSS by targeting this class:

    p.site-title {
        display: none;
    }

    And using media query so depending on the screen size you want to target it should be similar to this (where 600px is width from which you want to hide site title):

    @media only screen and (max-width: 600px) {
       p.site-title {
        display: none;
       }
    }

    I hope it helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Hide site title on mobile?’ is closed to new replies.