I'm having trouble adding padding to the home section div and I can't seem to access it using either the id or class. Any suggestions on how to solve this issue would be greatly appreciated.
Below is the CSS code:
body {
margin: 0 ;
font-size: 16px;
font-family: 'Montserrat', sans-serif;
}
.header .navbar {
padding: 0;
}
.home-section {
background-color: red!important;
padding: 250px 0px 200px;
}
Here is the div I'm trying to access in index.php:
<body>
<div class="container home-section">
<div class="row">
<div class="col-lg-6">
<div class="home-content">
<h1>Awesome Product</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat</p>
<a href="#">Buy For ₹150</a>
</div>
</div>
</div>
</div>