Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bootstrap popover - remove arrow

I have the following div:

<span data-placement="bottom" data-toggle="popover" data-container="body">Press Me!</span>

with the following popup:

  <div id="popover-content" class="hide"> ... </div>

How do I remove the arrow from the popover window??

like image 747
Urbanleg Avatar asked Dec 07 '22 20:12

Urbanleg


1 Answers

.popover.bottom .arrow {visibility:hidden;}

like image 121
Jake Taylor Avatar answered Jan 27 '23 23:01

Jake Taylor