by Guest January 13th 2019, 3:36 pm
The problem is that the image is originally 1023*283. In your header, it is resized to 1146*350, basically it is bigger in the header, which is why it looks less detailed. There are a few possible solutions:
1.Remake the image(in Photoshop or other programs) so that it is 1146.65*350 by default
2.Add this CSS code which will make the image 1023*283 in your header:
- Code:
.headerbar{
background-size:contain !important;
}
As you can see this code leaves some black space at the top and bottom of the image. That can be removed if you want.
@skouliki, you forgot the dot before the class name.