Closed (works as designed)
Project:
Touch
Version:
7.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
23 Oct 2011 at 04:27 UTC
Updated:
28 Oct 2011 at 01:56 UTC
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
Comment #1
ravis commentedHi,
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.
Comment #2
lgammo commentedThis 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