When using "position:fixed;" in my stylesheet, can I have the position also be on the right? Here's my code:
CSS
.buttons {
margin-bottom: 30px;
text-align: right;
position:fixed;
}
HTML
<div id="main">
<div class="container">
<div class="buttons">
<button class="nav-toggler toggle-slide-left">Menu</button>
</div>
</div>
</div>
Yes, you just need to add 'right: 0;' to your .buttons CSS class.