Good day,
the font-color of my html-body is changed via a css-file with following code:
body {
background-color: #6d6a6a;
color: white;
}
Now I've included a Bootstrap-Popover...
<button type="button" class="btn btn-sm btn-danger" data-toggle="popover" title="Popover title" data-content="And here's some amazing content. It's very engaging. Right?">Click to toggle popover</button>
...and the necessary script...
<script>
$(function () {
$('[data-toggle="popover"]').popover()
})
</script>
But because of my css-file, some parts of text inside my popver (the "title" to be exact) are also rendered in white! I'm really new to javascript, so is it possible - and when it's possible, what would be the best solution - to change my font-color inside my Popover to black?
Thanks to all of you!