Reputation: 365
I have a navbar with three <a>
tags that form the buttons to link to different pages. I am currently working on mobilization for the site, and for some reason I cant make the dropdown display the buttons in block format.
My code:
<span class="nav navbar-nav inline">
<a href="#page-top" class="navbuttons"></a>
<a href="contact" class="navbuttons">Contact</a>
<a href="aboutus" class="navbuttons">About Us</a>
<a href="projects" class="navbuttons">Projects</a>
</span>
.navbuttons {
font-size: 24px;
display: inline-block;
float: right;
clear: left;
margin-right: 24px;
padding-right: 10px;
padding-left: 10px;
margin-top: 10px;
color: white;
font-weight: 700;
}
@media (max-width: 768px) {
a.navbuttons {
display: block;
}
}
Upvotes: 0
Views: 42