It'd be nice if I could see what topic someone had last posed in for each specific forum on the homepage.
The logo has no link attached to it.
- Code: Select all
<div id="dashboard">
...
<a title="Board index" href="./index.php"></a>
...
</div>
CSS wrote:#dashboard {
background: url("./styles/revsoft/theme/images/dashboard.png") no-repeat scroll center center transparent;
height: 200px;
margin: auto;
padding: 0 20px;
}
I think it's pretty clear where the problem resides. Quick fix:
- Code: Select all
<div id="dashboard">
...
<a title="Board index" href="./index.php"><img alt="Revolution Software">./styles/revsoft/theme/images/dashboard.png</img></a>
...
</div>