This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.avia-image-container-inner {margin-top: 15px!important;}/*align images with text*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#newsletter_sign_up { | |
max-width: 272px; | |
height: 329px; | |
background-image: url("/wp-content/uploads/2015/01/newsletter_signup.png"); | |
background-size: 100% 100%; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.av-catalogue-image { | |
border-radius: 0; | |
width: 490px; | |
height: 340px; | |
/*This adds the border, in this a 5px white border */ | |
padding: 5px; | |
/*This adds the drop shadow */ | |
-webkit-box-shadow: 6px 6px 20px -1px rgba(189,189,189,1); | |
-moz-box-shadow: 6px 6px 20px -1px rgba(189,189,189,1); | |
box-shadow: 6px 6px 20px -1px rgba(189,189,189,1); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.widget_nav_menu ul:first-child>.current-menu-item, .widget_nav_menu ul:first-child>.current_page_item, .widget_nav_menu ul:first-child>.current-menu-ancestor { | |
padding-left: 0; | |
left: 0; | |
box-shadow: none; | |
background-color: transparent!important; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Change current page menu colour */ | |
.header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a {color: #fff!important;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Make the content full width of the boxed section */ | |
.container_wrap.fullsize .container { | |
padding-left: 0px !important; | |
padding-right: 0px !important; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* add a fixed, full screen background image */ | |
html { | |
background: url(/wp-content/uploads/2015/04/background.jpg) no-repeat left top fixed!important; | |
-webkit-background-size: cover!important; | |
-moz-background-size: cover!important; | |
-o-background-size: cover!important; | |
background-size: cover!important; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Reduce the Latest News Widget excerpt to X words */ | |
function custom_excerpt_length( $length ) { | |
return X; | |
} | |
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add short description to the product loop | |
add_action('woocommerce_after_shop_loop_item_title','woocommerce_template_single_excerpt', 5); |