Closed (fixed)
Project:
Arthemia
Version:
6.x-1.1
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
6 Feb 2010 at 14:28 UTC
Updated:
25 Feb 2010 at 23:20 UTC
Hi,
I noticed that in some nodes where comments are not enabled that there is a large white space in the content area below, just above the footer.
This is as a result of the following:
#content {
background:none repeat scroll 0 0 #FFFFFF;
float:left;
font-size:1.05em;
line-height:1.75em;
<strong>min-height:400px;<strong>
padding:10px;
}
Is there a work around for this?
Thanks!
Comments
Comment #1
HS commentedCorrection. The above should read,
This is as a result of the following:
#content {
background:none repeat scroll 0 0 #FFFFFF;
float:left;
font-size:1.05em;
line-height:1.75em;
min-height:400px;
padding:10px;
}
Is there a work around for this?
Thanks!
Comment #2
naheemsays commentedyou can add a local.css file with
#content {
min-height:200px;
}
or some other number if you wish to override the default value.
Comment #3
HS commentedThank you.