• Resolved achimbecker

    (@achimbecker)


    I thought it at some point was like this, but I just recently saw, that my website does (again/still?) show site-title and site-description when being viewed from a mobile. Is there a way in Zakra customizer to change standard settings to make this happen? or do I need to add custom CSS?

    I tried changing from

    @media screen and (max-width: 480px){
    	.site-branding {
    			width: 30%;
    	}
    }

    to

    @media screen and (max-width: 480px){
    	.site-branding {
    			width: 30%;
    	}
    	 .site-title .site-description {
            display: none;
        }
    }

    but didn’t succeed. Can you please help?
    best, Achim

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @achimbecker,

    Thanks for reaching us,

    Please try adding this CSS inside WordPress Dashboard > Appearances > Customize > Additional CSS and check it once.

    @media screen and (max-width: 480px){
       .site-branding p.site-title, .site-branding p.site-description{
            display: none;
        }
        }

    Let me know if this helps you or not, and I will be back.

    Regards

    Thread Starter achimbecker

    (@achimbecker)

    yup, that was it. Thx a lot!!

    Hi @achimbecker,

    Glad to hear that is has been fixed. Let me know of any confusion in the future and I will be back.

    Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘remove site-title and site-description from mobile’ is closed to new replies.