Exploring the grid option pull and push has presented some challenges for me. I suspect the issue lies in my implementation of bootstrap CSS and/or JS (not certain if push/pull are controlled by JS or CSS).
I've included a push-pull setup at the top of my webpage:
<div class="row">
<div class="col-md-9 col-md-push-3">Should be on the right</div>
<div class="col-md-3 col-md-pull-9">Should be on the left</div>
</div>
You can view this at:
I'm puzzled as to why it's not functioning as expected and unsure where to begin troubleshooting.