Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8375925
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T15:18:03+00:00 2026-06-09T15:18:03+00:00

In my rails application I’m trying to build a simple FAQ page that has

  • 0

In my rails application I’m trying to build a simple FAQ page that has a sidebar where when you click on a topic, it moves down to that question.

So a piece of my code in the sidebar looks like:

<li><a href="#work">How does it work?</a></li>

And then I have a matching h2 with the id=”work”.

It keeps overshooting when I test it out, I think because it’s showing the content starting at the very top of the page, which is hidden by the navbar in Bootstrap. What’s the best way to remedy this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T15:18:04+00:00Added an answer on June 9, 2026 at 3:18 pm

    Had the same issue. Here’s what I came up with:

    // listen for click events originating from elements with href starting with #
    $('body').on('click.scroll-adjust', '[href^="#"]', function (e) {
      var $nav
    
      // make sure navigation hasn't already been prevented
      if ( e && e.isDefaultPrevented() ) return
    
      // get a reference to the offending navbar
      $nav = $('div.navbar')
    
      // check if the navbar is fixed
      if ( $nav.css('position') !== "fixed" ) return
    
      // listen for when the browser performs the scroll
      $(window).one('scroll', function () {
        // scroll the window up by the height of the navbar
        window.scrollBy(0, -$nav.height())
      });
    
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My Rails application has a simple yaml file that's downloaded relatively frequently (5x per
I have a rails application that I am trying to integrate devise_invitable into. So,
So I have a rails application that has two different navigation headers. One that
The Rails application I'm working on, has two central pieces: users and groups. A
My Rails application has a number of tasks which are offloaded into background processes,
My Rails application makes use of Time.zone so that each user can set their
I am building a Rails application that contains Developer s who have Application s.
In my rails application I have a rake task that reads emails using imap.
In my rails application I am trying to access pagination via an ajax call.
is there a sample rails application that uses a sign on with google approach?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.