-
AuthorPosts
-
February 28, 2007 at 4:29 am #118972
When I publish a left and a right column, I get a blank white line across the bottom of my page. My test site is at http://www.kneeandshouldercare.com. In Firefox, I noticed there is a broken image at (..images/body-bg.jpg). I think it is related to the following css:
<blockquote>#ja-rightcol {
float: right;
width: 19%;
background: url(..images/body-bg.jpg) top left repeat-y;
}</blockquote>I just can’t quite figure it out. Any ideas?
Khanh Le ModeratorKhanh Le
- Join date:
- November 2013
- Posts:
- 1884
- Downloads:
- 41
- Uploads:
- 31
- Thanks:
- 44
- Thanked:
- 203 times in 131 posts
February 28, 2007 at 7:17 am #215051Hi,
You should modify the above style to:
#ja-rightcol {
float: right;
width: 19%;
background: url(../images/body-bg.jpg) top left repeat-y;
}
March 11, 2007 at 4:47 pm #215535Thanks for the quick reply. I made the change, and I am still getting the horizontal white line at the bottom of my page. I notice it comes up whenever the right modules get too long.
http://www.kneeandshouldercare.com
any suggestions?
March 11, 2007 at 7:26 pm #215536Sorry to bump- any ideas?
ShannonN FriendShannonN
- Join date:
- July 2006
- Posts:
- 1947
- Downloads:
- 0
- Uploads:
- 9
- Thanks:
- 16
- Thanked:
- 172 times in 49 posts
March 12, 2007 at 3:24 am #215553jbrowdy;9529Thanks for the quick reply. I made the change, and I am still getting the horizontal white line at the bottom of my page. I notice it comes up whenever the right modules get too long.
http://www.kneeandshouldercare.com
any suggestions?
Hi Jbrowdy
Had a look at the site and at the bottom of the I see a seperator between two content areas, Is this what you are talking about this line is about equal height to where the last right module ends?
If so looking at the source code I see this
<a href=”http://www.kneeandshouldercare.com/component/option,com_recommend/Itemid,49/”>Recommend this site to a friend </a>
</p>
</td>
</tr>
</table><span class=”article_seperator”> </span>
</div></td></tr></table>Remove this
<span class=”article_seperator”> </span>and I think the line (seperator) will go
I hope this has helped solve your problem
Cheers ShannonMarch 12, 2007 at 3:37 pm #215578Shannon,
Thanks for looking, but I am not sure you see what I am talking about- it’s not the dashed line (the that is intented)- rather it’s the white strip just above the bottom of the content area (the background bleads through).I’ll try your suggestion, but I think we are talking about two different things.
March 12, 2007 at 3:46 pm #215579I am stumped right now- I can’t even find anything in my template index file that makes reference to the string “<span class=”article_seperator”> </span>”.
Any idea where this is coming from?
March 12, 2007 at 3:58 pm #215580Shannon- and anyone else who cares,
You were right in a sense- it’s the module that is causing the problem. I figured out that if I change the css for div.module, it fixes the problem, but I am not sure what the repercussions will be:<blockquote>div.module {
/* made change to margin-bottom to fix white line */
margin-bottom: 15px;
padding: 0;
float: left;
clear: both;
width: 100%;
background: url(../images/box-br.gif) no-repeat bottom right;
</blockquote>I changed <blockquote> margin-bottom: 15px;</blockquote> to <blockquote> margin-bottom: 0px;</blockquote>
Is this a bad hack that will have other consequences? I have to look around. Is there a better way to fix this that won’t affect other pages on the site?
Thanks so much.
March 12, 2007 at 4:00 pm #215581Sorry for all the posting- I just answered my above question- all modules are now too close.
How can I take away that white line without affecting all modules? I though the bg image might play a role?
Can you please make this “not solved” so that others will look?
Thanks!
ShannonN FriendShannonN
- Join date:
- July 2006
- Posts:
- 1947
- Downloads:
- 0
- Uploads:
- 9
- Thanks:
- 16
- Thanked:
- 172 times in 49 posts
March 12, 2007 at 7:30 pm #215586jbrowdy;9588Shannon,
Thanks for looking, but I am not sure you see what I am talking about- it’s not the dashed line (the that is intented)- rather it’s the white strip just above the bottom of the content area (the background bleads through).I’ll try your suggestion, but I think we are talking about two different things.
I’m talking about the white bar that appears at the bottom of the page looks like an additional page without content has been added to the site?
Michael Casha FriendMichael Casha
- Join date:
- September 2014
- Posts:
- 2561
- Downloads:
- 1
- Uploads:
- 32
- Thanks:
- 41
- Thanked:
- 119 times in 1 posts
March 12, 2007 at 9:33 pm #215593<em>@jbrowdy 9591 wrote:</em><blockquote>Sorry for all the posting- I just answered my above question- all modules are now too close.
How can I take away that white line without affecting all modules? I though the bg image might play a role?
Can you please make this “not solved” so that others will look?
Thanks!</blockquote>
I’ve removed the solved status for you.March 12, 2007 at 10:33 pm #215603Thanks for removing solved status. Sorry Shannon- I think you are right about your assumptions. The way I see it, you have one element (the module) pushing on another element (the content area or something). If you remove padding from module, it fixes the problem- but it makes all other modules look bad.
I wonder if the element being pushed down (content?) can be manipulated?
Does this make sense?
Any advice from developers?
March 13, 2007 at 1:30 am #215604Well, I found the offending code. In the CSS file notice the following:
<blockquote>/* CONTENT COLUMN——————————————————— */
#ja-mainbody, #ja-mainbody-fl, #ja-mainbody-fr, #ja-mainbody-f {
padding-bottom: 20px;
/* border-bottom: 3px solid #E1E1E1; */
}</blockquote>
I commented out <blockquote>/* border-bottom: 3px solid #E1E1E1; */</blockquote> and it fixed the problem. The 3 pixel border at the bottom of all these divisions was causing a line to cut across my content area.
The upshot is that it takes away the 3 px border at the bottom of the page. Not too damaging, if you are not using the user 7, user 8, user 9 and user 10 modules. But, if you are, I imageine this will screw up your template- pushing those modules right up against the content area.
I think this is an official bug. Any developers willing to help with this? Perhaps that three pixel border can be added to the top of the above modules instead of the bottom of the mainbody areas?
Help?
March 13, 2007 at 1:52 am #215606Confirmed: taking the above 3px out makes the space between the maincontent and the user 7-9 closer together. Not a huge deal, but this horizontal “space” is no longer symmetric with the vertical “space” between user 9 and user 10.
Can a develeper please look at this and see if there is a way to preserve the intended look without causing the horizontal line?
See the images for examples:
-
Michael Casha Friend
Michael Casha
- Join date:
- September 2014
- Posts:
- 2561
- Downloads:
- 1
- Uploads:
- 32
- Thanks:
- 41
- Thanked:
- 119 times in 1 posts
March 13, 2007 at 2:08 am #215608So is this now resolved? I don’t think this is a bug, this is merely an isolated case unless it’s occurred to someone else?
-
AuthorPosts
This topic contains 17 replies, has 4 voices, and was last updated by ShannonN 17 years, 8 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum