Twitter 2.0 bootstrap navbar center - css

I would like to center the navbar similar to how twitter.com or facebook does this. Right now it looks like the navbar is stuck on left alignment.
Anyone have this issue?
Thanks!

Breaking from the comments, using a .container-fluid container creates the undesired effect of the navbar being stretched, this can be avoided by replacing it with a .container fixed container instead.

Have you referenced the examples Twitter Bootstrap provides to ensure you are structuring your HTML correctly? The navbar should extend the entire length of the window if implemented properly.
http://twitter.github.com/bootstrap/getting-started.html#examples

Related

What is the best solution for the ionic 5 and scroll content with fixed above part?

I want to scroll ion-content in the ionic 5 mobile application. I know how I can use slot="fixed" in ion-content. But it doesn't work as expected. Because a fixed part covers the scroll part in ion-content like as a standard fab button. I want to make the fixed and scroll part as a same level. No one covers the other one. What is the best solution in the ionic 5/Angular application? I don't like to use pure css styles like a web application. Prefer to use ionic components with ionic style variables.
Like this image
Ionic Content Image with fixed and scroll parts
Best solution is to use ion-header. So only scrolling part will be ion-content.
You can move the fixed block outside ion-content, it should exclude it from scrollable area

Using flickity with bootstrap 4 for horizontal cards scrolling (responsive)

Can anyone provide an example of this or at least a successful example of flickity inside bootstrap 4? I am trying to make an horizontal list of cards in a sort of carousel. I want to scroll through them three a time. Using flickity seemed interesting, but I have all sort of problems doing so within bootstrap 4. Cards will not be the same size, or will just disappear. I tried using it with and without row/col classes (the grid), just had different issues.
This is a bit similar to what I want to achieve, except for the scrollbar :
https://www.codeply.com/go/PF4APyGj7F
You can hide scrollbar. Here is the code to hide scrollbar :-
::-webkit-scrollbar {
display: none;
}
After digging into my problem, I asked on the github of Flickity and someone was able to provide me with a working BS4 example. So from there I knew it was possible to use this plugin with BS4. I just had to find what I was doing wrong.
https://github.com/metafizzy/flickity/issues/742

Scrolling does not work when responsive bootstrap navbar is extended to full size

I just started with ROR and I'm following the One Month Rails tutorial. This includes the Bootstrap responsive navbar. I now added some pins to my pinterest clone. I noticed that the scrolling does not work when the navbar is in full size. when i make the browserwindow smaller so the navigation gets into the small navigation symbol i can scroll the page. You can probably see best on my heroku link: morning-shore-7790.herokuapp.com
It would be great to get a hint on how to solve this.
Thanks a lot
Looks like you've nested the container class inside the navbar, which will always cause this behavior.
If you're using ERB it means you didn't close a div where you should have, if you're using haml or slim it's most likely an indentation oops. If you use chrome, safari or firefox you can see this clearly, just inspect the element and collapse the navbar, if all other content is contained within that, you still haven't fixed it.
If you still have questions post your layout and your index.

Sticky footer on Twitter Bootstrap 2.3.2

I want my bootstrap page to have it's footer always on the bottom of the page, and the solutions I've found aren't working for me. None of the solutions proposed here
Flushing footer to bottom of the page, twitter bootstrap isn't working for me. As the height of the pages vary, it's tricky, right? No matter what I try, there's always whitespace below the footer. And as I don't want a fixed footer, how I'm supposed to achieve this, as my bootstrap site is responsive?
I'll just have to stick with this:
http://getbootstrap.com/2.3.2/examples/sticky-footer.html
Consider this: https://gist.github.com/aalaap/3066704
I had to make a few adjustments to get it working with Bootstrap but it works well and does not require a fixed height footer, which is responsive.

Fixed sidebar in twitter bootstrap 2.0 results in overlap

When I follow all 3 options in the top answer in this post:
Fixed sidebar navigation in fluid twitter bootstrap 2.0
The sidebar is indeed fixed but the content in the other div in the row (the span9) is overlapped by the sidebar. When I remove the CSS additions, the overlap is gone. I've triple-checked my html to make sure there's now hanging divs and everything seems to check out.
Has the core bootstrap CSS changed in a material way or am I missing something?
Here's a screencap:
I solved this problem myself by using the offset class as mentioned in my comment. It is referenced by not used in the answer to the cited questions. Thanks for everyone's help/editing.

Resources