Y
Y
Yuki Developer2016-04-30 15:40:25
HTML
Yuki Developer, 2016-04-30 15:40:25

How to change direction of popover bootstrap for phone?

Guys, on the desktop, the popover direction should be to the right side (right), and on adaptive resolutions (tablet, phone) - down (bottom). How can this be implemented?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Anton Shamanov, 2016-05-01
@SilenceOfWinter

Add your styles, ala:

.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
@media (min-width: 768px) {
  .text-right-md {
    text-align: right;
  }
  .text-left-md {
    text-align: left;
  }
}

Usage by analogy with bootstrap base classes
<p class="text-left text-right-md">...</p>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question