/*File:			custom.cssDescription:	Custom styles for Thesis




















BASIC USAGE:






















input, textarea (line 45)

{

font-size: 1em;

color: #ffffff;

background-color: #ffffff;

background-image: none;

background-repeat: repeat;

background-attachment: scroll;

background-position: 0% 0%;

border-top-width: 1px;

border-right-width-value: 1px;

border-right-width-ltr-source: physical;

border-right-width-rtl-source: physical;

border-bottom-width: 1px;

border-left-width-value: 1px;

border-left-width-ltr-source: physical;

border-left-width-rtl-source: physical;

border-top-style: solid;

border-right-style-value: solid;

border-right-style-ltr-source: physical;

border-right-style-rtl-source: physical;

border-bottom-style: solid;

border-left-style-value: solid;

border-left-style-ltr-source: physical;

border-left-style-rtl-source: physical;

border-top-color: #aaaaaa;

border-left-color-value: #aaaaaa;

border-left-color-ltr-source: physical;

border-left-color-rtl-source: physical;

border-right-color-value: #dddddd;

border-right-color-ltr-source: physical;

border-right-color-rtl-source: physical;

border-bottom-color: #dddddd;

}


/* The next lines sets up size of ← PREVIOUS ENTRIES at bottome of each page */

.custom .prev_next p {
    font-size: 2.0em;
    line-height: 2.2em;
}






If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag will be appended with the "custom" class, like so: <body class="custom">. You can use the "custom" class to override *any* CSS declarations contained in the style.css file.































For example, if you wish to change the default link color to green, you would add the following declarations to this file:































	.custom a, .custom a:visited { color: #090; }	<--- This makes links green	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them































WHY THIS WORKS:































By using the "custom" class, you are creating more specific CSS declarations for HTMLelements. CSS styling is applied through rules of specificity, and because declarationsprepended with .custom are more specific, they get applied when the page is rendered!




























More information about styling your Thesis installation using this file can be foundin the User's Guide:	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/*/



.custom .format_text .drop_cap {  font-family: Verdana;  font-weight: bold;  font-size: 3.3em;  color: #C7030D;}




/* Style the First (or Only) Post */.custom .post.top { background:#FFFFFF none repeat scroll 0 0; border:0px double #FFFFFF !important; margin:1em; padding:2em;}/* Style Remaining Posts (in a Multi-Post Listing) */.custom .post.post_box { background:#FFFFFF none repeat scroll 0 0; border:3px #DDDDDD; margin:0.5em; padding:2em;}


/* This line sets up our clickable background image based on the site title's link *//* DIY: Adjust the height & width attributes to reflect the actual size of your image *//* DIY: Change the filename of your image to reflect the actual header's file name */.custom #header #logo a { display: block; height: 100px; width: 960px; background: url('images/header.jpg') no-repeat; outline: none; }
/* This line gets rid of the site title & tagline by casting them out to far left field */.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */
/* This is a bit of a kludge, but it seems to work. */.custom #header #tagline { height: 0; }
/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */.custom #header { padding: 0; }
#archive_info {display:none;}




function no_sidebars() {
	global $post;
	$no_sidebars = get_post_meta($post->ID, 'no_sidebars', true);
	if (is_single() && $no_sidebars)
		return false;
	else
		return true;
}
add_filter('thesis_show_sidebars', 'no_sidebars');

