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
Add your popover content as HTML with your own class and then in CSS file add:
.popover .own-class { width: ... }
".own-class" element width will determine popover width.