Currently, I have set up a navigation bar for the usual navigation options, and now I want to include buttons for both Sign in and Sign up.
To implement this, I am using an a
tag with the classes btn btn-large btn-success
. However, it seems that the navbar does not support nested btn
elements by default.
As a result, the layout looks like this:
And when hovered over, it appears as:
So, my question is: Am I approaching this incorrectly? Is there a step or detail that I am overlooking?
Before I proceed with redefining CSS classes for .btn within the navbar, I wanted to get some clarification on this matter.
Thank you!