var blog = jQuery('.hubspot-blog-content');
var image_link = jQuery(".image-link");
- var image = jQuery(".hubspot-featured-image");
var blog_characters = blog.text().length;
var title = jQuery(".hubspot-title");
- image.css("margin-bottom", "20px").css("background-size", "contain").css("width", "500px").css("height","350px");
- image_link.css("display", "block");
+ image_link.css("display", "block").css("margin-bottom","15px");
blog.find('img').remove();
title.find("h1").css("margin-bottom", "15px").css("font-size", "25px");
- if(blog_characters > 400){
- blog.text(blog.text().substring(0,400) + '...');
+ if(blog_characters > 195){
+ blog.text(blog.text().substring(0,195) + '...');
}
</script>
\ No newline at end of file