I have created a simple Angular-UI popover in my application. However, the predefined popover-placement
options are not meeting my requirements. I want the placement of my popover
to be at the bottom
, as indicated in my HTML notes below. Unfortunately, the element to which this popover is attached is positioned at the left edge of the screen, causing half of it to extend off-screen. Is there a way to explicitly set left: 0px
, for instance, so that I can still position this popover at the bottom without it going off-screen? Another possibility would be to use popover-placement='right'
, but this is not ideal as it may cover other content.
<img ng-src="/images/{{player.status}}.png" alt="" id="status" popover='{{player.detail}}' popover-title='Player Status: {{player.detailedStatus}}' popover-trigger='mouseenter' popover-placement='bottom'>