Remove extra white space below header

Homepage Community Forums Aspire Theme Support Remove extra white space below header

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #20590
    Alex O
    Customer

      Hi! Awesome theme!

      I’m having a small issue though. For some reason extra white space is being created between the header and post title (examples: http://bit.ly/2m4NoYN , http://bit.ly/2kEVaLG).

      I’ve tried shrinking it with custom CSS to no avail (maybe didn’t do it correctly). Is this a known issue and is there a fix?

      Appreciate any suggestions!

      #20600
      Wes
      Moderator

        Everything seems to be working as it should, but if you want to decrease the space between the header & content, you can edit the margin-top on line 653 in your CSS (It looks like you’ve already made changes to it)

        .site-inner {
        	background-color: #fff;
        	clear: both;
        	margin-top: 75px;
        	position: relative;
        	z-index: 9;
        	-word-wrap: break-word;
        }
        #20611
        Alex O
        Customer

          Hi Wes,

          Thank you for the quick reply! The changes in the theme.css file didn’t work for some reason (I tried it before as well), but when I added

          .site-inner {
                   margin-top: 75px;
          }

          to the custom css section of the theme, the white space got removed! Thank you for your help!

          #20613
          Alex O
          Customer

            One more question. How do you get rid of the extra white space between the article summaries in content archives like the Blog: http://bit.ly/2m4NoYN

            Thank you!

            #20614
            Alex O
            Customer

              Oh, and also I’ve noticed a gap between the end of the article and author’s box – anyway to make it narrower? Thanks!

              #20617
              Wes
              Moderator

                “The changes in the theme.css file didn’t work for some reason (I tried it before as well)”

                It was probably your Browser Cache. Anytime you make CSS adjustments you’ll need to clear your Cache if you want the changes to show up Instantly on your end. A quick way to do it is to simply hit your Reload Button on your Browser. That’s how I always do it.

                “How do you get rid of the extra white space between the article summaries in content archives like the Blog”

                Looks like you already figured this one out too. Most of the space is coming from the Entries section (around line 1780) –

                .entry {
                	margin-bottom: 40px;
                	padding: 0;
                }

                It’s originally 100px, but you set it to 40px. Remember to hit your Reload Button if you want to see the CSS changes show up instantly on your browser. I can already see the changes you’ve made on your site.

                “I’ve noticed a gap between the end of the article and author’s box – anyway to make it narrower?”

                The code you edited above handles that as well. The entry code is the same for Blog Posts, and Single Posts. You can separate them to be different if you want, but for now it’s showing up as you have it edited.

                Let me know if this helps.

                #20618
                Alex O
                Customer

                  Wes, you are a savior! Thank you!

                  #20620
                  Wes
                  Moderator

                    You’re Welcome!

                    Let us know if you run into any other issues.

                  Viewing 8 posts - 1 through 8 (of 8 total)
                  • The topic ‘Remove extra white space below header’ is closed to new replies.