I'm attempting to incorporate 4 navigation buttons on the right side of a page, which when clicked will allow me to navigate to different sections within the same page, similar to a single-page design.
To achieve this, I am including the following code snippet to create the navigation buttons:
<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>
However, the positioning of these buttons is not correct. Refer to the snapshot provided for more clarity.
Could you suggest the appropriate Bootstrap classes that can be utilized to align the buttons to the extreme right and have them fixed in position while ensuring responsiveness?