I'm trying change the font size for my title (the WEBSIO part) but for some reason it won't take effect. Any help would be appreciated. Here is the html and css. I've also highlighted the effected area.
HTML
Code:
<body>
<div class="container_24">
<header>
<div class="grid_5" title">WEBSIO</div>
<nav class="grid_19">
<ul>
<li>Home</li>
<li>About</li>
<li>Services</li>
<li>Portfolio</li>
<li>Contact</li>
</ul>
</nav>
</header>
</div>
</body>
</html>
CSS
Code:
.title {
font-size: 33px;
font-family: corbel;
}
Thanks.