I am trying to change the CSS on a bootstrap popover. I want to change the entire popover background, not just the text.
Any suggestions?
http://bootply.com/
You would target the .popover element as opposed to #popOverBox
.popover
#popOverBox
EXAMPLE HERE
.popover { background: tomato; }
And to change the background of the arrow (pseudo element), you would use:
.popover.bottom .arrow:after { border-bottom-color: tomato; }