How to reduce the space above title?

Homepage Community Forums Epik Theme Support How to reduce the space above title?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #14372
    fabsfabian
    Customer

      Dear Appfinite Community and CSS gurus,

      Can someone please help me to reduce the space above the title of the pages? For example on http://fabsfabian.com/photo-gallery/ I would like the white space above the h1 title (Photo Gallery) to be half as big.
      Thank you in advance,

      Fabs

      #14386
      Wes
      Moderator

        There are a couple ways to do this. Most of the space is coming from the content title area. You can remove this by adjusting the code on line 2295 in your style.css file –

        .entry {
            background: #fff;
            margin: 0 3px 40px;
            padding: 40px 0 0;
        }

        If you change the top padding to either 20px, 0 (or whatever you prefer) it will decrease the space you see in between.

        Try this first and see how it looks (0px)-

        .entry {
            background: #fff;
            margin: 0 3px 40px;
            padding: 0;
        }

        If that is too much, then you can try this (10px) –

        .entry {
            background: #fff;
            margin: 0 3px 40px;
            padding: 10px 0 0;
        }
        #14443
        fabsfabian
        Customer

          Thank you again for your help Wes! This solved it!!! 馃檪

          #14445
          Wes
          Moderator

            You’re Welcome!

          Viewing 4 posts - 1 through 4 (of 4 total)
          • The topic ‘How to reduce the space above title?’ is closed to new replies.