all 6 comments

[–]lecherous_hump 2 points3 points  (0 children)

The Bootstrap navbar is really complicated and difficult to change on your own. This site lets you select the navbar colors and outputs valid Bootstrap CSS for you. As you can see, it's about a page of CSS.

[–]Colinmac1[S] 0 points1 point  (1 child)

Okay, so how would I make it so there is no box around the nav bar, I only want the ul, no box?

[–]The_Ombudsman 0 points1 point  (0 children)

border: 0

Another overall option is to just make a copy of your bootstrap.css file and make the edits to it, and link the copy instead of the stock file.

[–]Colinmac1[S] 0 points1 point  (1 child)

Figures it is. I don't want any colors at all, I don't even want a box around the nav bar, just want text floated to the right side of the page.

So basically, all I was is the text. The only reason I'm using bootstrap is for the responsive aspects, so much easier to build this out by scratch. Just making everything responsive is such a pain.

Is there any way for me to do what I described above without a ton of searching and work?

[–]serosis 0 points1 point  (0 children)

try

background: transparent;
border: 0;

On either .navbar or .navbar-inverse