I’m stuck on my navbar for my portfolio page. It looks fine on my laptop but when I check the cell phone view, it does not line up evenly. The “about” and “work” buttons go in one line off center and the “contact” button falls below also off center. I thought creating columns would handle this but it doesn’t. Can you help me find my error?
Well I did find that if you remove the float:left; from your “div.scrollmenu a” style, the links will be centered.
It’s strange…I was watching the css change over while shrinking the screen down and there doesn’t seem to be a bootstrap break point after 768px. Granted I was using the libraries linked from here: http://getbootstrap.com/getting-started/
You might want to add some breakpoints then yourself to your css depending on at what resolution size the layout starts to break. You can define a new font size there, either with em’s or as Naeemrind suggested and try vw’s. The only problem with using pixels to define your font size is that it’s inflexible. Meanwhile things like %, em, vw, are more fluid. Defining with pixels isn’t wrong by the way, but you have to be more on top of text when it comes to sizing it down yourself.