• Hello,
    My theme has a couple of menu links above my banner. Firefox doesn’t seem to pick them up as links, but ie works fine with it. The website is http://www.dryfly.ca

    The code in my header.php is:

    <div id="blogTitle"><a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a></div>
    <p class="profile-link" style="text-align: right;"><a href="<?php bloginfo('url'); ?>" title="Go home">Home</a> &nbsp;&nbsp; <a href="<?php bloginfo('url'); ?>/wp-gallery2.php/" title="Photo Album">Photos</a> &nbsp;&nbsp; <a href="http://www.dryfly.ca/index.php?pr=RSS_Feed" title="Learn About RSS Feeds">RSS Feeds</a>&nbsp;&nbsp; <a href="<?php bloginfo('url'); ?>/wp-admin/" title="Blog Adminstration">Admin</a>

    thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • I am not exactly sure whats causing that, but try this.

    Add styling for the links based on your container they are inside.

    and your container seems to be .profile-link, so add .profile-link a etc as needed and see if that solves the problem.

    Thread Starter shmish

    (@shmish)

    Thank you for you reply. I’m very new at this stuff though, and I’m not sure I understand what you suggested. Could you give a quick short example for “add styling for the links based on your container they are inside.”?

    Try adding the following to your stylesheet:


    .profile-link a {
    text-decoration: none;
    }

    .profile-link a:hover {
    text-decoration: underline;
    }

    If that doesn’t solve the problem, post back and I can try provide more assistance

    Thread Starter shmish

    (@shmish)

    Okay, I know what you mean now. I tried it, and did not have any success with firefox. The code does what it is supposed to in ie though, the links were underlined when I hovered over them.

    thanks

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘menu links not working in firefox’ is closed to new replies.