Home Forums Pro Themes Education Hub Pro Hide Site title and Tagline in Desktop but enable in Mobile & Tablet devices

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #142864
    Emmanuel Urassa
    Participant

    How can i hide SITE title and Tag line in Pc and Desktop , But enable only in Moble devices and tablets can i have the code that perform that or any other techniques

    #142899
    Psink
    Keymaster

    Hello Emmanuel

    Please add this CSS code in Additional CSS

    
    .site-title, .site-description{
    	display: none;
    }
    
    @media only screen and (max-width: 767px){  
    	.site-title, .site-description{
    		display: block;
    	}
    }
    

    Go to Admin Panel >> Appearance >> Customize >> Additional Css, paste above code here and published

    Hope this helps

    Have a great day

    Regards,
    Psink

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