I need to align some elements on a page and I'm not getting it, I've already done some tests like using text-align:center
in class pull-right
as well as header-features
according to examples I've read, but with no success. >
What I have is this:
<!-- ALINHA CONTEÚDO -->
<div class="row">
<div class="col-md-12">
<!-- CLASSE ONDE O CONTEÚDO ESTÁ -->
<div class="pull-right">
<ul class="header-features">
<li><i class="fa fa-bullhorn"></i>
<div class="header-feature-caption"> <img src="img/caixa.jpg" width="108"> </div>
</li>
<li><i class="fa fa-hand-o-right"></i>
<div class="header-feature-caption">
<h5 class="header-feature-title">ANUNCIAR IMÓVEIS</h5>
<p class="header-feature-sub-title">clique aqui</p>
</div>
</li>
</ul>
</div>
</div>
</div>
And their css are these:
.pull-right { float: right !important; } .header-features { list-style: none; margin: 0; padding: 0; }
What I'm trying to do is this:
Theprojectcanbeseenhere: Demonstration Page