Events Made Easy Forums Bug fixed or feature request implemented Location Map "Next Period >>" Position Fix for IE 6 & 7

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #42390
    Anonymous
    Inactive

    Location map “Next Day >>”, “Next Week >>” and “Next Month >>” positioning is not correct in IE 6 & 7, because the right-float is printed before the unfloated center text. Reversing lines 576 and 577 in “eme_locations.php” makes the positioning correct in IE6/7/8 and Firefox 3.6.13.

    From:

    $pagination_top.= "<span class='eme_nav_center'>$scope_text</span>";
    $pagination_top.= "<a class='eme_nav_right' href='" . $this_page_url.$joiner."eme_offset=$next_offset'>$next_text >></a>";

    To:

    $pagination_top.= "<a class='eme_nav_right' href='" . $this_page_url.$joiner."eme_offset=$next_offset'>$next_text >></a>";
    $pagination_top.= "<span class='eme_nav_center'>$scope_text</span>";

    #46054
    Franky
    Keymaster

    done in trunk, also applied for eme_events.php

    #46055
    Anonymous
    Inactive

    I just tested the current trunk version and confirm that this problem has been fixed for both events and locations.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Bug fixed or feature request implemented’ is closed to new topics and replies.
Scroll to Top