I've been troubleshooting an issue with a newly created div that's not picking up its corresponding styles from the stylesheet. It's frustrating and I could really use some help.
Here is the HTML:
<div class="2columnlayout">
<div id="managecontent1">
<img src="img/wordpress-logo.png" />
<p>Wordpress</p>
</div>
<div id="managecontent2">
<img src="img/filezillaicon.png" />
<p>F.T.P.</p>
</div>
</div>
And here is the CSS it's not recognizing:
.2columnlayout{
text-align: center;
font-size: 24px;
font-weight: 300;
margin-top: 90px;
}