I use the Carousel component to push news on my site. However, I have great difficulty using the "Show more" button. Indeed, I can not load a hyperlink in the button. Can you tell me what is the corresponding syntax?
On the website I used the following syntax:
Code: Select all
<div class="slide p-2 pl-10 pr-10">
<div class="row flex-align-center h-100">
<div class="cell-md-4 text-center">
<img src="images/pumba.png" class="img-fluid">
</div>
<div class="cell-md-8">
<h1 class="text-light">Pumba</h1>
<p class="mt-4 mb-4">Lorem Ipsum is simply dummy text of the printing and typesetting...</p>
button class="button alert">Show more...</button>
</div>
</div>
</div>
Code: Select all
<button class="button alert"><a href="my_hyperlink" target="_blank">Show more...</a></button>
Code: Select all
<a class="button " href="#" role="button">Link</a>
Thank you very much for your help.
Swelo