Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using twitter-bootstrap. I was wondering how you put an icon in front of the brand name. Somehow the icon also seems like it is a lot smaler than the text. How can this be fixed so it looks good?

<div class="navbar navbar-fixed-top">
  <div class="navbar-inner">
     <div class="container">
      <i class="icon-signal icon-white"></i>
      <a class="brand" href="#">Internett</a>
   </div>
  </div>
share|improve this question
The icon widht/height doesn't change with the text, the images are a static 14px. Is that your issue? – Andres Ilich Jul 16 '12 at 0:30
The size is not really the issue. It's the placement. I want it dead center in front of the text an it is not. There is some code in my question. – Anders Jul 16 '12 at 0:32

1 Answer

up vote 3 down vote accepted

You can try including the icon inside the .brand title anchor and just align it with some css like so:

CSS

.brand i {
    margin-top: -4px;
    vertical-align: middle;
}

Doesn't look pretty but it works.

Demo: http://jsfiddle.net/andresilich/HGMdM/

share|improve this answer
This works. My brand name was still a little higher than it should be, so i added a .brand { margin-top: 2px; } and it's great now. – aalaap Sep 17 '12 at 9:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.