Nevermind I got it! Thank you again!
Thank you!
Everything worked perfectly except for changing the text shadow and space of the menu.
I used the following code:
@media (max-width: 992px)
body .navbar-inverse .nav>li>a {
padding: 0;
text-shadow: 0 0px 0px #000;
}
Using this code, “body” appears red, and “>li>a” also appears red.
I altered the code to the following with no luck:
@media only screen (max-width: 992px)
{ body .navbar-inverse .nav.li.a
{
padding: 0;
text-shadow: 0 0px 0px #000;
}
}
-
This reply was modified 9 years, 5 months ago by wildgearhq.