This file contains hidden or 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
<style> | |
.inner,.wrapper:hover { | |
background: #e2017b; | |
background: -moz-linear-gradient(top, #e2017b 0%, #640037 100%); | |
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e2017b), color-stop(100%, #640037) ); | |
background: -webkit-linear-gradient(top, #e2017b 0%, #640037 100%); | |
background: -o-linear-gradient(top, #e2017b 0%, #640037 100%); | |
background: -ms-linear-gradient(top, #e2017b 0%, #640037 100%); | |
background: linear-gradient(top, #e2017b 0%, #640037 100%); | |
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2017b', endColorstr='#640037', GradientType=0 ); |
This file contains hidden or 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
<?php | |
/** | |
* Trick to have the 'Portfolio' entry into the breadcrumbs | |
*/ | |
global $portfolio_id; | |
$portfolio_id = 165; | |
add_filter('wp_seo_get_bc_ancestors', 'add_portfolio_taxonomy', 10, 1); | |
function add_portfolio_taxonomy($ancestors){ | |
global $portfolio_id; | |
$ancestors[] = $portfolio_id; |
This file contains hidden or 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
<?php | |
add_theme_support('post-thumbnails'); | |
add_image_size('slideshow-mini', 870, 500, true); |
This file contains hidden or 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
google.maps.event.addListener(map, 'tilesloaded', function() { | |
infowindow.open(map,marker); | |
}); |
This file contains hidden or 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
<?php | |
function merge_images($images, $config=null){ | |
if(empty($images)) return 'No images'; | |
$config = array_merge( | |
array( | |
'w' => '700', | |
'h' => '370', | |
'q' => '50', | |
'r' => false |
NewerOlder