I am struggling to align 2 divs side by side due to a margin that one of the divs has, and I cannot remove it.
.middleHolder{
padding: 0px !important;
}
body{
font-family: Raleway, sans-serif;
}
.numberedTitle{
font-family: Roboto, sans-serif;
font-size: 62px;
padding-left: 15px;
margin: 0 !important;
width: 100px;
}
.subtitleHolder{
display: inline-block;
}
p{
font-family: Georgia, serif;
font-style: italic;
font-size: 17px !important;
font-weight: 300;
color: /*#888*/;
}
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
</head>
<div class="middleHolder col-md-12">
<div class="numberedTitle">
<span>01</span>
</div>
<div class="subtitleHolder">
<p>Lorem Ipsum</p>
<h3>Filler One</h3>
</div>
</div>
I have attempted to use the !important function to no avail.
https://i.sstatic.net/8CLya.jpg
I have also removed the col-md-12
from both numberedTitle
and subtitleHolder
, but unfortunately, it did not result in any changes.