I am currently working on a captivating parallax effect for my homepage, but I'm looking to eliminate the rounded corners from the images.
Below is the HTML code for one section:
<div class="jumbotron paral paralsec1">
<h1 class="display-3">Connect</h1>
<p class="lead">with musicians in your area.</p>
<p class="lead"><a class="btn btn-info btn-lg btn-md" href="/public/register_member/" role="button">REGISTER AS MEMBER</a></p>
</div>
And here is the CSS:
.paral {
min-height: 800px;
background-attachment: fixed;
background-size: cover;
background-position: 50% 50%;
}
If anyone knows how to remove the rounded corners with minimal changes to the existing code, please share your solution. Thank you!