• Hi, I managed to search the solution for this problem in almost every post on customizr theme but i was able to get only 25% of the solution to this problem, I like to edit the following css code to make the logo size bigger but in the customize it panel, when i add this code in the custom css it wont work, can someone please help me to make it work, the theme is really amazing and the only problem that i’m facing with this theme is the size of the logo.

    element.style {
    max-height: 100px;
    max-width: 250px;
    }

    I have tried that enabling and disabling the force logo dimensions and it just make a very slight difference.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Do you have a link to the site you’re working on?

    The appearance/size of the difference would depend on the image itself, as well as the forced dimensions.

    But, the quick answer to your problem is, to make the changes you need to target the right thing using your css, element.style just applies to whatever you have selected using whichever tool you’re using

    .site-logo > img {
        max-height: 100px;
        max-width: 250px;
    }

    Should do the trick!

    Thread Starter danishmallick

    (@danishmallick)

    @somewhatrounded
    thank you so much, it worked….

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