Creating grid elements in Bootstrap 3, I am faced with a challenge. When the viewport is below <768px
, I want to align a button in the same position as shown in the image with the lion.
Check out the demo site here.
For viewports >768px
, the button is positioned using the class:
.bottom-right {
position: absolute;
bottom: 8px;
right: 16px;
}
How can I adjust the button position without affecting other buttons on the grid that also use the class bottom-right
?
This is the desired end result:
https://i.stack.imgur.com/yhFDl.jpg
I have removed irrelevant code for clarity.
<... more content ...>