I have the following code for a popover effect with Bootstrap 3, I'm using Bootstrap 3.3.7. This popover works as follows, as the mouse passes over this icon the message appears. I have several popovers on the page, but this one in particular is very large content and I need to increase the width of it so it does not leave the view area. Does anyone know how?
Here's how my popover code and image works.
<ahref="#" data-toggle="popover" data-placement="left" data-trigger="hover" title="<strong>Informação</strong>" data-content="conteudo vem aqui"><i class="fas fa-question-circle"></i></a>
-
$('[data-toggle="popover"]').popover({html: true});
Libraries that I'm using in addition to the Bootstrap.min.css file downloaded from the site, the version is 3.3.7:
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script><!--LatestcompiledJavaScript--><scriptsrc="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>