Hello Erik Ellsinger ,
I am really sorry for the delay of this reply as it is a weekend for us here.
1. On the blog front-page there is a headline that takes up a whole lot of room. It says "Senaste inlägg" and it seem to cause a big white space between the log headline and the blog entries. How can I remove it and take away all that white space?
>> Try apply this css code in your template css file
#ezblog-body .blog-post {
padding: 0px !important;
margin-top: 0px !important;
}
2. How do I disable the read more buttons on the blog front-page?
>> You can disable the read more button from your backend > Easyblog > setting > layout > General > Frontpage Blog Truncation > Show read more only when necessary - YES (Check my screenshot below.)
>> Or you can go to this file and remove few line code ->
JoomlaFolder\components\com_easyblog\themes\default\blog.item.php
//LINE 94 until 97
<?php if( $row->readmore ) { ?>
<!-- Readmore link -->
<?php echo $this->fetch( 'blog.readmore.php' , array( 'row' => $row ) ); ?>
<?php } ?>
// And LINE 120 until 123
<?php if( $row->readmore ) { ?>
<!-- Readmore link -->
<?php echo $this->fetch( 'blog.readmore.php' , array( 'row' => $row ) ); ?>
<?php } ?>