I'm trying to see if it's possible to customize the blockquote-footer
line in bootstrap 5. Can I change its color and width?
Here's the code snippet from bootstrap 5:
<figure>
<blockquote className="blockquote">
<h1 className="text-start">10 of Wands</h1>
</blockquote>
<figcaption className="blockquote-footer">
Published Date: Oct. 10, 2021
</figcaption>
</figure>
Example output:
https://i.sstatic.net/Lct6O.png
How can I adjust the color and size of the --
?
I've tried this code, but it's not working:
.blockquote-footer {
border-left: 5px solid #AB8D60;
width: 161px;
}
Thank you!