/*
THEME NAME: Dinzent Theme
THEME URI: http://saltygeek.com/themes/dinzent/
VERSION: 0.1
DESCRIPTION: A theme designed for Gary Dinsmore, on dinsmore-enterprises.com.  It features a custom style for specific categories. 
TAGS: child theme, dkret3
AUTHOR: Glen Dinsmore
AUTHOR URI: http://saltygeek.com
TEMPLATE: dkret3
*/

/* Import the style.css of the dkret3 base theme */
@import url('../dkret3/style.css');

/* Header - You can still change the header image in the Settings panel*/

/*Default Header Photo - Place photo in:
/public_html/wp-content/themes/dinzent/library/images/
*/
/* Two versions here*/
/*#header {
    background:#FFFFFF url(library/images/ArcturusMorroStrandText.jpg) repeat-x scroll 0 0;
}
*/

#header {
    background:#FFFFFF url(library/images/bg_header.jpg) repeat-x scroll 0 0;
}


/* Make your changes to the default layout below */

/* Bicycle Construction Category */
#header.category-bicycle-construction {
	background: url(library/images/bg_header_bicycle.jpg) no-repeat scroll 0 0;
}
div.category-bicycle-construction {
	background:#cbf3b9 url(library/images/bicycle-post-header.png) repeat-x scroll 0 0;
	padding: 3px;
}
div.category-bicycle-construction div.entry-meta {
	background:#3ee318;
}

/* Bluegrass Category */
#header.category-bluegrass {
	background: url(library/images/bg_header_bluegrass.jpg) no-repeat scroll 0 0;
}
div.category-bluegrass {
	background:#b6c7ef url(library/images/bluegrass-post-header.png) repeat-x scroll 0 0;
	padding: 3px;
}
div.category-bluegrass div.entry-meta {
	background:#81a3ef;
}

/* Sailing Category */
#header.category-sailing {
	background: url(library/images/bg_header_sailing.jpg) no-repeat scroll 0 0;
}
div.category-sailing {
	background:#cfddf1 url(library/images/sailing-post-header.png) repeat-x scroll 0 0;
	padding: 3px;
}
div.category-sailing div.entry-meta {
	background:#858bfd;
}

/*
Add more custom categories here. Copy one of the categories above,
and paste them below. Modify the name of the styles to match the
new category's slug. If you're unsure what it is, look at your
list of categories here: <blog web path>/wp-admin/categories.php.
For example, the slug for the default category "Uncatagorized" is
"uncategorized". The header style for Uncategorized would be
"#header.category-uncategorized".

Make what ever CSS customizations you want. The examples above
change the following styles:
- The main header image at the top of the page
  (#header.category-bluegrass). The image must be 890x160 pixels
  to match the header section size.
- The background of the main post text (div.category-bluegrass).
  The example adds a gradiant background image that is darker at
  the top than the bottom. It's a 1x60 pixel image, repeated in the
  x direction.
- The background of the post meta information
  (div.category-bluegrass div.entry-meta). The example simply
  changes the background color to the darker color used in the
  gradiant image in the main post text header.
*/


