Hi,
First open includes > loop-index.php and find this code
<!--meta info-->
<div class="<?php avia_layout_class('meta'); ?> units blog-meta">
<div class='side-container side-container-date'>
<div class='side-container-inner'>
<span class='date-container minor-meta meta-color'><?php echo get_the_date() ?></span>
<div class='post-format-icon'></div>
</div>
</div>
</div><!--end meta info-->
Replace it with this.
<span class='date-container minor-meta meta-color'><?php echo get_the_date() ?></span>
Then locate this code on the same file
<div class="<?php avia_layout_class('entry'); ?> units entry-content <?php echo $post_format; ?>-content">
Replace it with
<div class="seven units entry-content <?php echo $post_format; ?>-content">
Now add this on your custom.css
.post-title.offset-by-two.alpha, span.date-container.minor-meta.meta-color {
padding-left: 30px!important;
}
Reload the page.
Regards,
Ismael