I want to if it is possible to modify the blockquote-footer
line from bootstrap 5? just change its color and width?
Here is the code 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>
Sample output:
How to change the color and size of the --
Tried this but it's now working:
.blockquote-footer {
border-left: 5px solid #AB8D60;
width: 161px;
}
Thanks!