Logo problem

Carmine

New member
Hello.
I wanted to know how I can customize the width height and so my logo. I currently use this code (in extra.css)

#logo img {
width: 500px !important;
margin: 16px 0 0 -36px !important;
max-width: 100% !important;
}

I want to put the height of the child logo but height does not work.

Greetings
 
Hello.
I wanted to know how I can customize the width height and so my logo. I currently use this code (in extra.css)

#logo img {
width: 500px !important;
margin: 16px 0 0 -36px !important;
max-width: 100% !important;
}

I want to put the height of the child logo but height does not work.

Greetings
Are you sure that this doesn't work?

#logo img {
width: 500px !important;
height: <YOUR_HEIGHT_HERE> !important;
margin: 16px 0 0 -36px !important;
max-width: 100% !important;
}
 
Top Bottom