Closed (outdated)
Project:
aBeesParadise
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 Jul 2008 at 23:21 UTC
Updated:
17 Apr 2018 at 05:15 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
cfleek commentedA partial fix to this is to modify the style.css and add display:inline; at line 437 depending on your editor, you may hit enter and it becomes line 438. What I have learned thanks to the great people at the Seattle users group is that a lot of this is being caused by the content being too narrow for what is being placed in the object. With some work I have been able to get around a lot of the issues, but my forum is still jacked. Still working on it!
-Craig
Comment #2
interface-web design commentedTo resolve this problem, please do the following:
Replace this class :-
body.sidebar-left #squeeze {
margin-left: 210px;*/
width:65%;
float:left;
}
with this class
body.sidebar-left #squeeze {
margin-left: 210px;*/
display:inline;
width:65%;
float:left;
}
Comment #3
nagygdev commentedThe problem was not resolved. The elements got under each other only.
(But the theme is very beautiful though. ;-)
Comment #4
interface-web design commentedIt seems you have not replaced the class completely. Please make sure that you replace:
this class
body.sidebar-left #squeeze {
margin-left: 210px;*/
width:65%;
float:left;
}
with this class
body.sidebar-left #squeeze {
margin-left: 210px;*/
display:inline;
width:65%;
float:left;
}
However, if you still face problems, kindly send us a screenshot of the page.
Comment #5
nagygdev commentedI would be glad better if it would turn out that I did something badly...
Comment #6
interface-web design commentedWe suggest that you reinstall the theme on your system and use this updated one. We are sending you the theme as attachment. However, if you still face any problems, kindly send us the URL so that we can assist you further.
Comment #7
bilocate commentedHello!
I'm having the same problem though i downloaded the file above! still it hasn't been fixed, please advice!
you can check the problem by viewing the site! on IE
http://www.kids-articles-better-parenting.co.cc/
--------------------------------------------------------------------------------
My bad! seems Google Adsense! banners pushed all the content under the menu! however once I've used the half-bannereverything seems to be OK!
Comment #8
interface-web design commentedWe checked the site on IE at our end and have found that it's working fine. It seems your problem has been resolved.
Comment #9
goodeit commentedThanks, this fix worked OK for me.
Is there any chance you could put out a new -dev or official release of this module to account for the changes made in your .zip above, plus any others you may have? I would be happy to help clean up the issue queue once a new release was posted addressing some of the posts.
Thanks again!
Comment #10
tofsjonas commentedHad the same problem in ie versions 6,7 and 8.
replacing
"float:left;"
with
"float:right;"
on line 440 in themes/aBeesParadice/style.css
seems to have done the trick.
Tested in Opera and Firefox, looks good there as well.
:)
---- edit -----
If you want to make it work with Swedish, you have to change
padding: 0 50px 0 0px;
to
padding: 0 10px 0 0px;
on line 473 as well :)
Comment #11
cmcintosh commented