I would like the have a Bootstrap Popover be wider. I read that this should work:
.popover-inner a { width: 600px; }
But, the browser c
Some answer herein recommend just making the popover class a certain width. This is no good, because it affects all popovers. Use something like this instead, something more targeted:
popover
.container-div .popover { /* add styles here */ }