Node content displayed in a page was forced to 300x500. But when actual content is bigger the text spilled outside of the node area. The result is that the text covered the copyright area in an ugly way.

I fixed it by removing the width and height css directive. I do not know if this the right solution but it seems to work on chrome.

Please verify this problem and/or fix.

This css:

/* Homepage
------------------------------------------------*/
.node {
margin-bottom: 40px;
margin-right: 20px;
float: left;
width: 300px;
height: 500px;
}

Became this css:

/* Homepage
------------------------------------------------*/
.node {
margin-bottom: 40px;
margin-right: 20px;
float: left;
}

Comments

ravis’s picture

Assigned: Unassigned » ravis
Status: Active » Closed (works as designed)

Hi,
This is intentionally coded to display posts in better and arranged way.
You need to use set word limit of teaser for articles, so that all posts on homepage have same number of words. And word limit should be enough to adjust in defined width and height. Set word limit to 50-60.

You can also edit CSS as you wish to display posts on homepage.

lgammo’s picture

This was for the display of the front page and no teaser was used.

You probably need to mention this somewhere that this is a feature not a bug. :-)

Thanks