I have a logo that is 170 x 100 px high. How can I give it that height of 100px? I have tried adding the class .gk-logo img in custom.css
{
height:100px;
width:175px;
}

However, it doesn't work for me.

How can I do it? Thanks

Hi @carlosdel123,
Try to add below CSS rules to the custom.css file.

#gk-header .gk-logo img {
  max-height: 100px;
  height: 100px;
}

Kind regards,

Write a Reply...
You need to Login to view replies.