In my “contact me” section at the bottom of my portfolio, the second grid is not working.
this paragraph:
Blockquote
Want to get in touch with me? Be it to request more info about myself or my experience, to ask for my resume, tips on how to solve your sudoku, random questions about the universe and the meaning of life, or even if only for some nice Fika here in stunning Toronto… just feel free to drop me a line anytime. I promise to reply A.S.A.P.
Should be on the right side. But it appears below my form.
Actually the .row is working. What happens is that you have a .left-margin for the form of 50px in the css and this is causing your form taking more than half of the space. If you try class=col-lg-5 you’ll see that the text will go to the right where you want it.
if you want to keep the left edge of that form from butting up against the edge of the browser, but are worried about margins pushing things out… try offsets…
something like: col-lg-5 .col-lg-offset-1
It will offset the column and leave that 1/first column (of 12 across a page) empty
sorry… missed his reply… yah the usual bootstrap syntax works with a container around everything, then a row… then the columns… didn’t realize it was missed. good catch @LervinU