1
I have the following code of a Popover effect with Bootstrap 3, I am using Bootstrap 3.3.7. This one can works as follows, when the mouse passes over this icon the message appears. I have several popovers on the page, but that particular one is very great content and I need to increase the width of it so that it does not leave the area of vision. Someone knows how?
Follow my code and image can in operation.
<a href="#" 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 am using besides the Bootstrap.min.css file downloaded on 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>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
Dude are you using any other library that has this Popover? Because it doesn’t look like the default Boostrap model... I put your code there using the standard documentation files I couldn’t simulate that behavior. Include the rest of the information in the question. Extra CSS and JS files you’ve used and more
– hugocsl
@hugocsl updated the question with all the libraries I’m using
– user128653