Reply To: Re: Blog Page Header Background Color

Homepage Community Forums Aspire Theme Support Re: Blog Page Header Background Color Reply To: Re: Blog Page Header Background Color

#18698
Eric
Customer

    This will change the color to white. Locate .site-header in your css (should be around line 1159)

    .site-header {
    	background-color: #000;
    	border-bottom: 1px solid #ddd;
    	left: 0;
    	position: fixed;
    	top: 0;
    	width: 100%;
    	z-index: 999;
    }

    Change #000 to #fff

    .site-header {
    	background-color: #fff;
    

    To add space to the left of the logo. Add margin-left: 20px; to .site-title a

    .site-title a {
        margin-left: 20px;
    }

    I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com