In the following code, everything is centered. However, I now only want to center the Title and append the date without moving the Title to the left. The title must remain in the middle with the date appended behind it. How can I accomplish this?
<div class="row center">
<div class="col-md-12">
<h1 style="display:inline;">Title</h1><p style="display:inline;"> 27th June 2014</p>
</div>
</div>