When I tried to access your site all I've seen is this:
![[Image: upCrKn5.png]](https://camo.mybb.com/6958eae6e336a9ab7768210f04d85fe7c23e46ee/687474703a2f2f692e696d6775722e636f6d2f757043724b6e352e706e67)
Its actually in center. If you want to align it to the left, add this property to your panel:
text-align: left;
(2013-03-10, 11:16 AM)effone Wrote: [ -> ]Its actually in center. If you want to align it to the left, add this property to your panel:
text-align: left;
Where do I add it mate? and how do I move the links at the top to the center? thanks.
In your global.css, find:
#panel {
color: #888;
}
make it:
#panel {
color: #888;
text-align: left;
}
For the menu:
find:
.menu ul {
color: #ddd;
font-weight: bold;
text-align: right;
padding: 4px;
}
make it:
.menu ul {
color: #ddd;
font-weight: bold;
text-align: center;
padding: 4px;
}