Answer the question
In order to leave comments, you need to log in
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
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;
}
}
<p class="text-left text-right-md">...</p>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question