Forums

How to remove the link hover bubble? (8 posts)

  1. dancandy
    Member
    Posted 1 year ago #

    When a user hover the mouse, a small bubble (almost instantly) appears with the same text has the Navigation link. Does anyone have insight as to how to disable this "bubble"?

    See the image below for a snap shot example of the bubble I am referring to.

    Thanks in advance!

    http://www.imgbx.com/images.php/i2843_bubble.png

  2. songdogtech
    Member
    Posted 1 year ago #

    That's from the title attribute title="member Program" in the URL. It's standard accessability, and if you remove them, it will reduce sight-impaired access to your site, throw code validation errors and impact SEO.

  3. dancandy
    Member
    Posted 1 year ago #

    Hey songdogtech,

    Thanks for the reply!

    I actually checked out the other links throughout the site. Apparently that bubble only appears across the header navigation links.

    I checked my header and every looks to be called in via PHP. Where might I find this title attribute?

  4. songdogtech
    Member
    Posted 1 year ago #

    Have to change it in your theme files. Might be a theme feature.

  5. dancandy
    Member
    Posted 1 year ago #

    I have been hunting through the theme files for hours and can't find anything. Any suggestions as to where I might start?

  6. songdogtech
    Member
    Posted 1 year ago #

    title="<?php the_title(); ?> in the menu section

  7. dancandy
    Member
    Posted 1 year ago #

    <div id="nav">
                        <ul>
                            <li <?php if ( is_home() ) { ?> class="current_page_item" <?php } ?>></li>
                            <?php if ( get_option('woo_addblog') == "true" ) { ?>
                            <li <?php if ( is_category() || is_search() || is_single() || is_tag() || is_search() || is_archive() ) { ?> class="current_page_item" <?php } ?>>
                                <a href="<?php echo get_option('home'); echo get_option('woo_blogcat'); ?>" title="Blog"><span><?php _e('Blog',woothemes); ?></span></a>
                                <?php if (get_option('woo_catmenu') == "true") { ?><ul><?php wp_list_categories('title_li=&child_of='.get_option('woo_blog_cat_id') ); ?></ul><?php } ?>
                            </li>
                            <?php } ?>
                            <?php woo_menu( get_option('woo_menu_pages') ); ?>
    <li <?php if ( is_home() ) { ?> class="current_page_item" <?php } ?>><a href="/wp-login.php"><span style="color: #F7941E"><?php _e('Member Login',woothemes); ?></span></a></li>
                        </ul>
                    </div>

    This is what is listed for my Nav. I see a few spots for "title" but I'm not sure which one is which. Are you able to make sense of this?

  8. songdogtech
    Member
    Posted 1 year ago #

    That's Woothemes. They do things differently with nav menus. Ask in their forums.

Topic Closed

This topic has been closed to new replies.

About this Topic