• Resolved christianqs

    (@christianqs)


    How can I change the logo size in site branding?

    If it need made in CCS style there is no problem to me.

    Tks

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author ScriptsTown

    (@scriptstown)

    You can set the max-height and max-width for screen <= 1024px. Also, instead of actual width or height set to auto, you can use value in px like 70px, 85px etc.

    .site-branding .custom-logo-link img {
    	max-height: 52px;
    	max-width: 100px;
    	width: auto;
    	height: auto;
    }

    For screen size > 1024px:

    @media screen and (min-width: 1025px) {
    	.site-branding .custom-logo-link img {
    		max-height: 52px;
    		max-width: 215px;
    		width: auto;
    		height: auto;
    	}
    }
    Thread Starter christianqs

    (@christianqs)

    Work’s

    Thanks for fast reply and for great job in Galaxis

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Size of logo’ is closed to new replies.