Reply To: Responsive logo to screen size

#2080
livemesh
Keymaster

Hi Chris,

When I resize my browser, I see that the logo size is changing appropriately. But if you want to insert any of your custom responsive behavior for logo then here is the template to do that

/* -------------------- Responsive behavior styling ---------------------- */

@media only screen and (max-width : 1024px) {
	
	/*Below is the template. Replace with your styles */
	.myDiv { mystyle: value; } 
    
    }

@media only screen and (max-width: 767px) {

    }

@media only screen and (max-width: 479px) {

    }

Please put the code in the “Custom CSS” tab of the theme options. Thanks!