New theme - 'Square'

Skinning and designing Serendipity (CSS, HTML, Smarty)
Don Chambers
Regular
Posts: 3652
Joined: Mon Feb 13, 2006 2:40 am
Location: Chicago, IL, USA
Contact:

Re: New theme - 'Square'

Post 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.
=Don=
Post Reply