Homepage › Community Forums › Aspire Theme Support › Header Changes › Reply To: Header Changes
For the header background, take a look in the “Site Header” section around line 1173 and remove or comment out the transparent background color like this –
.front-page .site-header {
border-bottom: 1px solid #ddd;
padding-top: 30px;
}
.featured-section .site-header {
/*background-color: transparent;*/
border: none;
}
You can also decrease the Padding for the .front-page .site-header
if you want. It’s currently set at 30px for the frontpage, but you can decrease it to 20px or less if you want.
*************************************************************
To increase the logo size, first look around line 1199 and increase the width –
.title-area {
float: left;
padding: 25px 0;
width: 202px;
}
You’ll also need to increase it in the responsive section of your css on line 2505.
Before you do that, I would consider uploading a larger image first. At the moment, the image you have uploaded is only 202px width and 38px height. If you increase this image as it is on the site then it will start to look blurry since it’s being stretched out of it’s natural size. If you upload a larger image, and then make the changes I mentioned above, then the image will show up clear.
Let me know if this helps.