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
If you want to control the minimum width of your popover window, just add an extra line in the css (or extra css) like this:
.popover { min-width: 200px ! important; }
(replace 200px with the desired value)