Hey guys im trying to center this:
<div class="title" align="center">
<h1>Welcome home, <?php echo ($_SESSION['username'])?>!</h1>
</div>
Here is the CSS im using:
.title{
position: absolute;
margin-left: auto;
margin-right: auto;
}
However its not working, it just stays in the upper right..
Thanks in advance!