Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Prevent text wrapping to next line

I am newbie in Twitter Bootstrap. It is a very simple question.

Here is the image:

Paragraph

And here is my Code:

<div class="col-md-8 col-xs-6 col-sm-6  placeholders">
  <p id="people-things" class="text-center"><a href="#">PEOPLE-THINGS RECOMENDATION</a></p>
</div>

Problem: I want to put the Recomendation text in one line other then going in next line.

Infos: I had tried every grid in but still couldn't sort it out.

like image 823
Black User Avatar asked Dec 18 '22 22:12

Black User


1 Answers

You have to make smaller font-size on .people-things or add this CSS:

.people-things { white-space: nowrap; }

Which is making .people-things to show on one line.

like image 162
Viktor Maksimov Avatar answered Jan 27 '23 14:01

Viktor Maksimov