function glm_get_background() {
if (has_post_thumbnail()) {
$image_data = wp_get_attachment_image_src(get_post_thumbnail_id(), "full");
- $imageUrl = '<div class="featured-image" style="background: url(\''.$image_data[0].'\') no-repeat scroll 0px 0px / cover;;"></div>';
+ $imageUrl = '<div class="featured-image" style="background: url(\''.$image_data[0].'\') no-repeat scroll 0px 0px / cover;"></div>';
} else {
- $imageUrl = '<div class="featured-image" style="background: url(\''.get_template_directory_uri().'/assets/default.jpg?v=1.2.44\') no-repeat scroll 0px bottom / cover;;"></div>';
+ $imageUrl = '<div class="featured-image" style="background: url(\''.get_template_directory_uri().'/assets/default.jpg?v=1.2.44\') no-repeat scroll 0px center / cover;"></div>';
}
return $imageUrl;
}