Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

238
Views
Footer not rendering properly

I'm trying to sticky a footer at the bottom of a page that renders some posts through a loop in an ejs file. Below is my code:

    <div class="container">
      <a href="/home" class="link">Go Back</a>

      <% for (var i = 0; i < rows.length ; i++) { %>
      <div class="row">
        <div class="col-md-8">
          <div class="media g-mb-30 media-comment">
            <div class="g-mb-15">
              <h5 class="h5 g-color-gray-dark-v1 mb-0">
                <%= rows[i]['username'] %>
              </h5>
            </div>
            <hr />
            <p><%- rows[i]['message'] %></p>
          </div>
        </div>
      </div>
      <% } %>

      <textarea
        class="mt-4"
        rows="5"
        cols="75"
        name="comment"
        form="usrform"
      ></textarea>
      <form action="/public_forum" id="usrform" method="POST">
        <input class="btn btn-primary mt-3 mb-3" type="submit" />
      </form>
    </div>
    <footer class="footer">
      <div class="container">
        <span class="text-muted">Acme Bar © 2021</span>
      </div>
    </footer>

styles.css:

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background-color: #f5f5f5;
}

.media-comment {
  margin-top: 20px;
  border: 0.5px solid gray;
  padding: 9px;
  box-shadow: 1px 3px 3px gray;
}

For some reason the footer is stickied properly in other rendered pages, but in this one it shows like so:

enter image description here

Can't figure out what's wrong here. Any suggestions?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!