I am designing a page using Bootstrap 3. I am trying to use a popover with placement: right on an input element. The new Bootstrap ensures that if you use
placement: right
On Bootstrap 4, you can easily review the template option, by overriding the max-width :
$('#myButton').popover({ placement: 'bottom', html: true, trigger: 'click', template: '' });
This is a good solution if you have several popovers on page.