• I am new to WordPress and fumbled around in the dark to create a child theme.

    I wanted to remove the ghosting on hover from my gallery photos so you can see my plugin that shows a flip picture on hover. I accomplished that by removing some code (in my child theme) from style.css

    However now numbers and letters (3, U, and M) are showing up near my drop down menu.

    Can anyone please tell me why these are showing up and how to remove them?

    http://www.sundaraimports.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • .menu-item-has-children > a:first-child:after, #et-secondary-nav .menu-item-has-children > a:first-child:after {
    position: absolute;
    top: 0;
    right: 0;
    font-family: “ETmodules”;
    font-size: 16px;
    font-weight: 800;
    content: “3”;
    }

    replace this with
    .menu-item-has-children > a:first-child:after, #et-secondary-nav .menu-item-has-children > a:first-child:after {
    content: “”;
    }

    Thread Starter baikaiin

    (@baikaiin)

    Brilliant! That got rid of the threes (I wonder why), but the “U” which is a link to a search box and the letter “M” are still there as is a “2” that you can find on the right hand side if you scroll down a ways.

    #et_search_icon:before {
    content: “”;
    }
    for search U.
    .et_pb_scroll_top:before {
    content: “”;
    }
    for scroll 2.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Numbers and letters showing up near my drop down menu’ is closed to new replies.