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
There's a pull request on bootstrap to make this easier, but you can modify it using this technique of setting the template option for the popover:
template
$('#yourPopover').popover({ template: '' })
Then you can set your popover special-class css however you like (widths and more!)
special-class