Struggling with my band website development using Bootstrap. Inexperienced in web design, I'm facing difficulties getting elements to align properly without slipping under each other. Looking for insights and suggestions on how to avoid manual CSS adjustments like "top: 32px;".
Your feedback is valuable! GitHub Repo: https://github.com/Ominix/coldclockknockout
Feel free to review the raw code below if GitHub isn't accessible:
<!DOCTYPE html>
<html lang="en">
<head>
...
</head>
<body>
...
<div class="container-fluid mainContent">
<div class="row">
<div class="col-md-4">
<h1>THIS IS CONTENT NOW</h1>
</div>
</div>
</div>
...
<footer>
<div class="container">
<div class="row">
...
</div>
</div>
</footer>
...
</html>
Find the CSS styles used below:
html {
height: 100%;
}
...
/*================================================================================================
NAVIGATION
================================================================================================*/
...
/*================================================================================================
JUMBOTRON
================================================================================================*/
...
/*================================================================================================
Main content on home page
================================================================================================*/
...
/*================================================================================================
FOOTER
================================================================================================*/
Acknowledging that there might be excess and redundant code, any guidance or constructive criticism is welcomed. Your expertise will make a significant difference. Thank you!