Text in Bootstrap footer aligning to center
css, fullcalendar, html, twitter-bootstrap
Solution
Try adding the "text-center" class to the container. So you will end up with this:
<div id="footer">
<div class="container text-center">
<p class="text-muted credit" style="color:#fff">xyz</p>
</div>
</div>
See if that works. Otherwise, maybe paste your markup for the page so that we can look at it. It would also be helpful if you inspected the footer element with chrome for example and attached the screenshot of it.
Problem
The footer in my webpage is aligned to the center. ``` <div id="footer"> <div class="container"> <p class="text-muted credit" style="color:#fff">xyz</p> </div> </div> ``` This code works perfectly for other pages but for this particular page it doesn't work. This page contains a fullcalender UI that I have plugged but I doubt that has anything to do with my issue.