[Resolved] Hide Site Tagline on Mobile

Home Forums Support [Resolved] Hide Site Tagline on Mobile

Home Forums Support Hide Site Tagline on Mobile

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #593174
    Robert

    Customizer shows three different page size views. Is it possible to hide the site tagline only on the smallest of those?

    #593196
    David
    Staff
    Customer Support

    Hi Robert,

    add this CSS:

    @media (max-width: 420px) {
    	.site-description {
    		display: none;
    	}
    }

    https://docs.generatepress.com/article/adding-css/

    #593250
    Robert

    Thank you!

    #593261
    David
    Staff
    Customer Support

    You’re welcome

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