# Kallyas WordPress Theme Blog Layout Tweak to Isotope
### Styles to override Isotope styled applied to element
```
.blog-isotope-item {
position: relative !important;
top: auto !important;
left: auto !important;
}
```
### Script to adjust height of all blog element so they can stack properly
```
$(window).on('load', function() {
var maxHeight = -1;
jQuery('.blog-isotope-item').each(function() {
maxHeight = maxHeight > jQuery(this).height() ? maxHeight : jQuery(this).height();
});
jQuery('.blog-isotope-item').each(function() {
jQuery(this).height(maxHeight);
});
});
```