Re: Blog Page Header Background Color

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

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #18589
    kdoniere
    Customer

      Hi Wes & Team,

      I have two minor issues I’d like your help with if possible please.

      1. The header background color on the blog page is black. I tried to search for it but can’t locate it. I’d like it to be white.

      2. Is there a way to add padding or a margin around the logo to move it away from the left edge?

      Thank you!
      Karen

      #18594
      Eric
      Customer

        Hi, do you have a link to your site? I can tell you which lines of your CSS needs to be changed once I take a look.


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

        #18596
        kdoniere
        Customer

          Hi Eric,

          Sigh! I apologize for forgetting to include my site’s url: http://www.karendoniere.com/blog.

          Thanks again,
          Karen

          #18675
          kdoniere
          Customer

            Hi Eric & Team,

            I was wondering if you’d be willing to help me with my issue again?

            Thank you,
            Karen

            #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

            Viewing 5 posts - 1 through 5 (of 5 total)
            • You must be logged in to reply to this topic.