My initial design consisted of cards with centered text aligned inline next to icons similar to this:
However, I recently received a requirement to import Bootstrap into the project and revamp the entire layout. Unfortunately, upon importing Bootstrap, the alignment of all the cards got distorted. I have tried flexing them and using flex-wrap for the content, but it doesn't seem to resolve the issue. You can find a snippet of my current code here. `
#slider,
.wrap,
.slide-content {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
overflow-x: hidden;
height: 100%;
}
/* Rest of the CSS and HTML code here */
`I am in need of assistance to properly align everything in a more structured manner."