Explore this template for bootstrap cards here
The provided link features a template for bootstrap cards with horizontal sliding animations. I attempted to incorporate only the card properties into my code but encountered issues where the cards overshadowed everything else on the page. Despite adjusting the z-index for my header, I was unable to resolve this issue. Is there a way to extract just the card properties from the bootstrap template?
nav h1 { vertical-align: middle;
background-color: rgb(0, 0, 0); border: 10px solid rgba(0, 0, 0, 0); text-align: center; position: fixed; position: top; min-width: 100%; z-index: 3;
This is my CSS
IBAE-Information Library
<body> <nav> <h1 style="font-family:Helvetica;"> <ul class="nav"> <li><a href="#">menu1</a> ...
.logo img{ display:block; margin-left: auto; margin-right: auto; width:335px; height:114.666666666666667px;
}
body{ background: linear-gradient(to right, rgb(39, 38, 38), rgb(177, 72, 72),rgb(39, 38, 38)) }
This is my HTML
I attempted to integrate the animated bootstrap cards into my design but faced challenges as the cards dominated the layout even after removing the opacity property.