In my site i have displayed 5 posts per page.What is happening is a dotted line seperates posts with read more link from the post below...while there is no dotted line appearing below smaller posts that do not have a 'Read more' link .

Can we make this line appear between all posts irrespective of whether they are smaller or larer(ie.when there is /there is no 'Read more' link).

Can this be done?

Comments

valuez’s picture

Version: 6.x-1.8 » 6.x-2.6

I have the same problem. How come the dotted line divider between nodes disappear in the frontpage?
How can we insert the dotted line between all postings? Can some expert help?

MiraKimura’s picture

Need to know this one too. Thanks!

http://www.polipd.edu.my/

MiraKimura’s picture

No one?

shruti.sheth’s picture

Hello,
I hope my answer proves helpful to all for this isssue.
Actually the dotted lines are coming up due to the css given to " class="linksteaser" " in graphics.css. This is class is not present when comment settings are disabled, hence the dotted lines are not visible for smaller posts not having read more link.

The following may be one of the solutions to this problem. I tried and was successful in it.

In your node.tpl.php
Replace the following code

 <?php if ($teaser): ?>
    <?php if ($links) { ?><div class="linksteaser"><div class="links"><?php print $links?></div></div><?php }; ?>
        <?php endif; ?>

with this code

<?php if ($teaser): ?>
    <div class="linksteaser"><div class="links"><?php print $links?></div></div>
        <?php endif; ?>

Thanks.

oadaeh’s picture

Issue summary: View changes
Status: Active » Closed (won't fix)

This issue is being closed because it is against a branch for a version of Drupal that is no longer supported.
If you feel that this issue is still valid, feel free to re-open and update it (and any possible patch) to work with the 7.x-4.x branch.
Thank you.