(2015-01-27, 09:28 PM)Makan Wrote: How do i center the header logo on this one?
+1
I would also like to find out as I'm pretty n00b at coding lol
edit:
nvm, found it in search.
Go to global.css and find #logo
#logo {
padding: 10px 0;
}
add text-align:center;
#logo {
padding: 10px 0;
text-align:center;
}