Decrese space between content and footer

Alice Silva asked on March 6, 2018 20:56

I'm trying to decrease the space between the content of a page and the footer, but I've been unsuccessful (I'm not a coder). It's just this huge blank space that does not look visually appealing. How would I do that?

Recent Answers


Amit Srivastava answered on March 7, 2018 08:31

Hi Alice,

You can fix it using css only coding is not required. Add below css in wrapper of page content -

min-height: 250px; // increase/decrease px count as per your design.

hope will help.

1 votesVote for this answer Mark as a Correct answer

Alice Silva answered on March 7, 2018 20:09

Amit, where in the code would I add that?

<asp:PlaceHolder runat="server" id="phResources">

<cms:CMSWebPartZone ZoneID="ZoneHeading" runat="server" />
  <div class="info-contact-section full-width">
          <div class="fix-wrap">
      <div class="info-cnct-inner full-width">
        <div class="need-a-qut">
          <cms:CMSWebPartZone ZoneID="ZoneContactLeftPart" runat="server" />
          </div>
        <div class="srvc-lctr">
          <cms:CMSWebPartZone ZoneID="ZoneServiceFinderRight" runat="server" />
          </div>
        </div>
      <div class="btn-req-quote"><a href="~/request-quote/"><img src="~/NCR/media/images/btn-request.png" alt=""></a></div>
    </div>
  </div>

</asp:PlaceHolder>

0 votesVote for this answer Mark as a Correct answer

Amit Srivastava answered on March 14, 2018 07:50

Hi Alice,

you need to add that in placeholder <asp:PlaceHolder runat="server" id="phResources"> like below in css file - #phResources{min-height: 250px;}

Thanks,

1 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.