Home > Blockchain >  Changing Header Image Height
Changing Header Image Height

Time:01-12

I can't make the header image height bigger. I found some CSS that made the container height bigger. But every time I change the photo out, it is still the original height - 75px.

.container {
width:100%;
height:200px; 
float:left;
margin-top:2px;

}

What am I doing wrong?

CodePudding user response:

Try this CSS rule:

header {
    min-height: 50% !important;
}

CodePudding user response:

There should be something below the image that is blocking your height. Make sure to check from the inspect element

  •  Tags:  
  • Related