• Resolved ganzir

    (@ganzir)


    Hello,

    above my header image I placed a navigation-menu using wp_list_pages

    <div id="navmenu">
    <ul>
     <li><a href="<?php echo get_settings('home'); ?>">START</a></li>
     <li><a href="https://www.dgs2012.de/programm/programm-uebersicht">Programm</a></li>
     <li><a href="https://www.dgs2012.de/event-registrationee1?ee=1">Anmeldung</a></li>
    <?php $arguments = array('depth' => '1', 'title_li' => '', 'exclude' => '269,90,84,4939,4941,4942,4940,5016,5024,5324,99', 'sort_column' => 'menu_order');
    wp_list_pages($arguments); ?>
    <li>  <a href="https://www.dgs2012.de/english"><img src="<?php bloginfo('template_url'); ?>/images/uj.jpg" width="15" height="9" border="0" alt="EN"></a>
    </ul>
    </div>

    These Links do not work ins Safari, any ideas why?

Viewing 4 replies - 1 through 4 (of 4 total)
  • might be an issue with overlaying containers;

    These Links do not work ins Safari

    what is ‘do not work’?
    – no links showing on hover?
    – linking to the wrong page?

    Thread Starter ganzir

    (@ganzir)

    The Links are shown, but you cannot klick them, the cursor does not transform into this little finger.

    However, links shown in the menu on the left are working as they should, therefor I digest, that it has something to do with the way, these links are generated.

    If you want to take the time an install Safari, you can check it out for yourself.

    The URL is: https://www.dgs2012.de

    I am talking about the linke above the header image, which are aligned in a horizontal line, near the top of the screen.

    I just checked … Opera displays the same behavior.

    …same for chrome.

    … I have done a little testing, an it seems wp_list_pages is not resonsible for this.

    Even if I reduce the code to:

    <div id="navmenu">
    <ul>
     <li><a href="https://www.dgs2012.de/programm/programm-uebersicht">Programm</a></li>
    </ul>
    </div>

    This one link is not working either

    very likely a layer issue, the nav is covered by the #header div;

    possibly try to add ‘position:relative; z-index:100;’ to the styles of #navmenu;

    for instance try and add this to style.css of your theme:

    #navmenu { position:relative; z-index:100; }

    Thread Starter ganzir

    (@ganzir)

    Thank you, that did the trick.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Links generated by wp_list_pages do not work in Safari’ is closed to new replies.