• Resolved ricmil65

    (@ricmil65)


    trying to do 2 things:
    1. remove the search icon in the top menu

    2. increase the size and bold the font in the main menu.
    I have tried several things in custom CSS (using a plug in) but nothing is working.
    Any help would be appreciated

Viewing 12 replies - 1 through 12 (of 12 total)
  • Thread Starter ricmil65

    (@ricmil65)

    sorry the site is https://davesheppardart.com
    thanks.

    For the menu items:

    #top-navigation ul a {
    font-weight: bold;
    font-size: 18px;
    }

    And to get rid of the search icon:

    .top-search-icon {
    display: none;
    }
    Thread Starter ricmil65

    (@ricmil65)

    thank you that is awesome!
    would you have any idea why the fonts are all upper case?
    for style I am using lower case writing, but the menu always interprets them as upper case for the menu bar. I can’t seem to find any code relating to this style issue.
    Not a huge deal, but it would be nice to be consistent.

    To change your menu items to all lowercase, add this to #top-navigation ul a { }:

    text-transform: lowercase;

    Thread Starter ricmil65

    (@ricmil65)

    thanks again !
    appreciate it

    Thread Starter ricmil65

    (@ricmil65)

    me being a pest, sorry. The changes you suggested have all worked and are what I wanted, however they are not translating to the mobile version I see on my phone. Any ideas?

    In your custom CSS plugin, the ending bracket was mistakenly left off the media query @media screen and (min-width: 500px), causing all the CSS rules after it to be interpreted as part of the media query. A quick fix would be to delete all the CSS I suggested and rewrite it anywhere above the @media line, but I also suggest trying to figure out where the missing bracket should be.

    Thread Starter ricmil65

    (@ricmil65)

    think that did it. Thanks again !

    Does anyone know how to include a drop-down menu in this top bar?

    HI,
    I am facing similar kind of problem regarding primary menu.
    Can you please tell me how to change primary menu’s color ?

    Hi,

    How can I get this Menu bar to fix it on the top when we scroll down?
    When scrolling down this menu “disappears”..

    Thank you

    My main menu at the top has sub menus which are suppose to drop down but its not. Any ideas?

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Top Menu issues’ is closed to new replies.