There is another duplicated footer below the usual footer.
Can someone advise me what to do?
http://tes7.co.cc/intro
Thanks a lot.

CommentFileSizeAuthor
#5 ie-fix.jpg8.54 KBjonloh
#4 fehler.jpg24.3 KBthompson
#3 double_footer.png9.59 KBhswong3i

Comments

hswong3i’s picture

Component: Code » User interface
Assigned: Unassigned » hswong3i
Priority: Critical » Normal

Sorry that I only saw 1 footer at bottom. Maybe you have already fix this issue?

sianla’s picture

I still have this problem. This problem only exists when using IE7 but not when using firefox.

hswong3i’s picture

Title: Double Footer » Double Footer in IE7
StatusFileSize
new9.59 KB

Ok so I really get your problem. You should provide more information (e.g. screenshot) so the other will able to solve your problem more easily. I have attach an image for that as reference.

Anyway, I have no idea about why this happen: when you check the source code from IE7 (View -> Source), you will found that there is NONE of duplicated footer message. For sure that it is also correct in case of Firefox, Opera or Safari. I think this is the internal bug of IE7 which I am able to conclude for.

P.S. As I share most code (around 90% for both PHP and CSS) of Multiflex-3 with my other 3 theme projects (Contented7, Interactive Media and Internet Services), I also give a test for them. The double footer ONLY happen in case of Multiflex-3 + IE7, where the others are all fine. This may help for eliminate some potential possibility.

thompson’s picture

StatusFileSize
new24.3 KB

same problem. see attachment.

jonloh’s picture

Version: 6.x-1.x-dev » 6.x-1.2
Assigned: hswong3i » jonloh
StatusFileSize
new8.54 KB

I did a little trick to avoid the double footer in IE7, by simply creating a new block and add it to the footer. That's currently the best way to avoid the double footer at the bottom as far as I know.

Will be waiting for the proper solution to this though :)

hswong3i’s picture

Version: 6.x-1.2 » 6.x-1.x-dev
Assigned: jonloh » hswong3i
Category: support » bug
Status: Active » Needs review

Well... I don't have a good solution, but a functional hack. Already commit to CVS, so please test and feedback for it. Stable release will come after this issue :-)

The reason of duplicated footer message should belong to not proper start/end of html block elements, e.g. missing </div> element in somewhere (I check for many times but have no result...). BTW, jonloh's solution give me some hints for this hack. A <span style="display: none;">&nbsp;</span> can help the buggy render engine run correctly:

  <div id="footer"><!-- start footer -->
    <?php print $footer_message ?>
    <?php print $footer ?>
    <!-- begin #287426 -->
      <span style="display: none;">&nbsp;</span>
    <!-- end #287426 -->
  </div><!-- end footer -->

P.S. Use <div> or <span> alone won't have expected result. The style="display: none;" make this hack as dummy in render result, so function in both FF2/3, Opera9.5 and Safari3.

hswong3i’s picture

Any else update? Or I will set this issue as fixed :-)

hswong3i’s picture

Status: Needs review » Fixed

Assume as fixed since no more feedback.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

hswong3i’s picture

Mark http://drupal.org/node/287426 as duplicated with this issue.