hotrod1
Member
Posted 2 years ago #
I am trying to remove the header image and leave it blank but there is a gap between the navbar and content I want to remove. I tried looking through the templates and stylesheet and I even uploaded a 1px header image to replace it but I can't seem to figure it out? My website is below.
http://dentist.myexh.info/
P.S- Credit to nattywp for a great theme
nattywp
Member
Posted 2 years ago #
Hello,
you can try to add this to your style.css
.head-img {
display: none;
}
You may also want to change margin, to do that find this code:
.top {
border-bottom: 1px solid #EEEEEE;
border-top: 1px solid #EEEEEE;
float: left;
margin: 15px 0 30px;
width: 970px;
}
and change
margin: 15px 0 30px;
to
margin: 15px 0px 0px 0px;
Cheers,
NattyWP
hotrod1
Member
Posted 2 years ago #
Yes this worked, thank you.