By Mspeights on Tuesday, 05 May 2015
Posted in Technical Issues
Likes 0
Views 282
Votes 0
Hi,

I am currently configuring my blog and I've run into a spacing issue. At the top of each blog entry there is a large empty space that I would like to eliminate (or at least reduce as much as possible. I have attached a screenshot. I highlighted the space I am referring to in yellow.
Hello Mspeights.

You can remove that empty by comment a few line of code in ...\components\com_easyblog\themes\vintage\blog.read.php file.


<div class="blog-brief ptl pbl mbl">
<div class="in clearfix">

<div class="blog-option mts">
<ul class="reset-ul float-li small fsm">

<?php echo $this->fetch( 'blog.read.fontsize.php' ); ?>

<?php if($system->config->get('main_subscription') && $blog->subscription) { ?>
<li class="blog-email">
<a href="javascript:eblog.subscription.show('<?php echo EBLOG_SUBSCRIPTION_ENTRY;?>' , '<?php echo $blog->id;?>');"><?php echo JText::_('COM_EASYBLOG_SUBSCRIBE_BLOG'); ?></a>
</li>
<?php } ?>

<?php echo EasyBlogHelper::getHelper( 'publishtools' )->getHTML( $blog->id ); ?>

<?php if( $system->config->get( 'main_reporting') && ( $system->my->id > 0 || $system->my->id <= 0 && $system->config->get( 'main_reporting_guests') ) ){ ?>
<li class="blog-report">
<a href="javascript:void(0);" onclick="eblog.report.show( '<?php echo $blog->id;?>' , '<?php echo EBLOG_REPORTING_POST;?>' );"><?php echo JText::_( 'COM_EASYBLOG_REPORT_THIS_POST');?></a>
</li>
<?php } ?>
</ul>
</div>
</div>
</div>


Hope this help
·
Tuesday, 05 May 2015 10:43
·
0 Likes
·
0 Votes
·
0 Comments
·
Am I supposed to copy the code you have above and paste it into that file? I tried that and it didn't work. The space is still there.
·
Tuesday, 05 May 2015 12:06
·
0 Likes
·
0 Votes
·
0 Comments
·
Nevermind. I got it. Deleted that section of code and the space is now gone. Thanks!
·
Tuesday, 05 May 2015 12:07
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Mspeights.

You're welcome. Have a nice day
·
Tuesday, 05 May 2015 12:09
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post