Here is my jsFiddle with full code example.
I am trying to achieve the following to no avail:
- I want the
glyphicon-globe
to appear centered and above the "Community" label (<h1>
), and I want all three elements (the glyphicon, the<h1>
heading and<h3>
subheading) to be horizontally-centered in the middle of the screen - I want the "Community" label to appear with the correct font (see what happens when you remove the glyphicon...)
I have a feeling that the glyphicon is causing both problems:
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<h1><span class="glyphicon glyphicon-globe"/>Community</h1>
<h3>A free online community to all new fizz-comers.</h3>
</div>
</div>
</div>
Perhaps this is malformed somehow or causing weird CSS rules to fire. Any ideas?
` heading and the `
– smeeb Nov 06 '14 at 10:11` subheading are still left-aligned; I'm trying to get all three (glyphicon, heading & subheading) horizontally-centered in the middle of the screen. Any ideas? Thanks again!