/*
WOO CUSTOM STYLESHEET
---------------------

Instructions:

Add your custom styles in this file instead of style.css so it
is easier to update the theme. Simply copy an existing style
from style.css to this file, and modify it to your liking. */


/* GLOBAL STYLES
----------------
Add styles beneath this line that you want to be applied across your entire site */

#logo { float: none; margin: 0 auto; width: 600px ; }

#top-nav { float: none; margin: 0 auto; width: 500px ;}

.page .title {
display: none;
}

.entry img, img.thumbnail {
background: none;
border: medium none;
padding: 5px;
}

add_action( 'init', 'remove_canvas_main_navigation', 10 );
 
function remove_canvas_main_navigation () {
// Remove main nav from the woo_header_after hook
remove_action( 'woo_header_after','woo_nav', 10 );
}


/* DESKTOP STYLES
-----------------
Add styles inside the media query below that you only want to be applied to the desktop layout of your site */
@media only screen and (min-width: 768px) {
	/* Desktop styles go below this line */


	
}


