I've been struggling with a frustrating issue: I have 3 elements next to each other at the bottom of the fixed page. I tried using Bootstrap4 toggles to display only text when a user clicks on an image, but it ends up toggling all the images instead of just one. Despite several attempts, I haven't been able to solve this problem. If anyone knows the solution, please help! You can find the page here: www.ourway.pl.
.carousel {
margin-left: auto;
margin-right: auto;
width: 100vw;
position: fixed;
bottom: 10px;
}
.card-text {
margin: 5px 5% ;
text-align: justify;
text-justify: auto;
line-height: 25px;
}
.card-img-top {
margin-left: auto;
margin-right: auto;
display: block;
border-radius: 80px;
border: 3px solid rgba(0, 0, 0, 0.4) ;
text-align: center;
align-content: center;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.4/css/tether.min.css" rel="stylesheet"/>
<section class="container-fluid p-0 topcard">
<div class="row justify-content-center" >
<!-- Carousel -->
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel" data-interval="8000">
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<article class="col">
<div class="card carousel-style">
<div class="card-block p-0">
<h2 class="card-title">Rumunia - Sinaia</h3>
<img class="card-img-top opacity" data-toggle="collapse" data-target="#demo" aria-expanded="false" aria-controls="collapseExample" src="/static/rumunia/woloszczyzna/sinaia/cover.jpg" alt="Card image cap" title="Click to expand description">
<p class="card-text collapse" id="demo" >Today we invite you to the historical land of Woloszczyna, where the charming town of Sinaia lies at the foot of the Bucegi Mountains, which was favored by the royal couple who built their breathtaking summer residence Peleş here.</p>
<a class="btn" href="/Romania/woloszczyzna/sinaia/story.html" title="Story">Story</a>
<a class="btn" href="/Romania/romania-tips.html#Sinaia" title="Tips">Tips</a>
<a class="btn" href="/Romania/woloszczyzna/sinaia/gallery.html" title="Gallery">Gallery</a>
</div>
</div>
</article>
<article class="col">
<div class="card carousel-style">
<div class="card-block p-0">
<h2 class="card-title">Poland - Promnice and Surroundings</h3>
<img class="card-img-top opacity" data-toggle="collapse" data-target="#demo2" aria-expanded="false" aria-controls="collapseExample" src="/static/poland/silesia/promnice/cover.jpg" alt="Card image cap" title="Click to expand description">
<p class="card-text collapse" id="demo2">Today we invite you to Silesia, specifically in the vicinity of Promnice, where many attractions await you, such as palaces, castles, a picturesque path around the lake, bison reserve, open-air museum, or the opportunity to visit the Tyskie Brewery. </p>
<a class="btn" href="/Poland/silesia/promnice/story.html" title="Story">Story</a>
<a class="btn" href="/Poland/poland-tips.html#Silesia" title="Tips">Tips</a>
<a class="btn" href="/Poland/silesia/promnice/gallery.html" title="Gallery">Gallery</a>
</div>
</div>
</article>
<article class="col">
<div class="card carousel-style">
<div class="card-block p-0">
<h2 class="card-title">Poland - Shelter at Kudłacze</h3>
<img class="card-img-top opacity" data-toggle="collapse" data-target="#demo3" aria-expanded="false" aria-controls="collapseExample"src="/static/poland/beskid-makowski/pcim-kudlacze/cover.jpg" alt="Card image cap" title="Click to expand description">
<p class="card-text collapse" id="demo3">If you're looking for a short afternoon trip near Krakow, we recommend the loop from Pcim through the shelter at Kudłaczach!</p>
<a class="btn" href="/Poland/BeskidMakowski/Pcim-Kudlacze/story.html" title="Story">Story</a>
<a class="btn" href="/Poland/poland-tips.html#BeskidMakowski" title="Tips">Tips</a>
<a class="btn" href="/Poland/BeskidMakowski/Pcim-Kudlacze/gallery.html" title="Gallery">Gallery</a>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>