@offirkeren: Sorry for the late reply. As your question when on Spam. So, I finally found it when I check in Spam topics. Sorry for that.
I can see your Custom CSS working. But I can see there are css which is not correctly formatted. So, it might be causing issue for that.
For example: please find the following css in your custom css, where you have extra "
h1, h2, h3, h4, h5 {font-family: 'Source Sans Pro',sans-serif; font-weight:normal; margin-bottom: 0px;
"}
This css should be just as:
h1, h2, h3, h4, h5 {font-family: 'Source Sans Pro',sans-serif; font-weight:normal; margin-bottom: 0; }
Also check this another css, where you have aligncenter
. There is no css called aligncenter. If you want align center it should be as text-align: center;
#GameLogo img {margin-right: 5px; margin-left: 5px; aligncenter}
So, you need to replace it with the following:
#GameLogo img {margin-right: 5px; margin-left: 5px; text-align: center; }