Page 2 of 2

Re: New theme - 'Square'

Posted: Tue Sep 01, 2009 7:51 pm
by Don Chambers
There is an error in that template's style.css.....

toward the end, find this:

Code: Select all

td.serendipity_calendarHeader a:hover {
	color: #336633;
/********* End Calendar Styles *********/
There should be an ending curly brace after the color, like this:

Code: Select all

td.serendipity_calendarHeader a:hover {
	color: #336633;}
/********* End Calendar Styles *********/
The other option would be to just specify a different image for the header itself, which is defined here:

Code: Select all

#serendipity_banner, #header {
	float: right;
     background-color: #070D01;
     background-image: url(templates/square/img/square.jpg);
     background-position: top left;
     color: #FFFFFF;
     text-align: left;
     width: 96%;
     margin: 0px 0px 0 0;
     height: 350px; }
It is still worth fixing the missing curly brace in the css file even if the latter method is chosen.