I am trying to add 4 navigation buttons on the right side. On Clicking, on which I could go to the corresponding divs on one page. (Just like a single page design).
I am adding the following lines of code to create 4 navigation buttons on the right side of the page.
<div data-spy="affix" class="offset8 span1 well offset7 small">
<ul class="nav nav-list">
<a class=".move-1" data-target=".home-1-image"> A </a>
<a class=".move-1" data-target=".home-2-image"> B </a>
<a class=".move-1" data-target=".home-3-image"> C </a>
<a class=".move-1" data-target=".home-4-image"> D </a>
</ul>
</div>
But these lines of code do not put my 4 buttons in the far right order. Check out the snapshot.

What boot classes can be used to make them at the far right level, and they need to be fixed in place. (responsiveness should be well considered).
source
share