Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #86907
    Robert
    Participant

    Hi!

    How can I change the color of my menu, menu text and background.

    Thanks!

    #86945
    Pratik
    Participant

    Hi @Sziszi,

    Your theme is Simple Catch rather than Catch Base.

    To change the color of my menu, menu text and background, Appearance=> Customize=> Theme Options => Custom CSS box:

    
    #header #mainmenu ul li a {
        background-color: #dd3333; /* Menu Background Color */
        color: #ffffff; /* Menu Text Color */
    }
    

    You can change the hex values of color to any ones you like.

    If you upgrade to pro version, you will have these options as you will be able to choose them via color picker.

    Regards,
    Pratik

    #86952
    Robert
    Participant

    Hi!

    I’m sorry again, for mixed up the two themes.

    The code worked perfect, thanks!

    Sziszi

    #86957
    Robert
    Participant

    Hi!

    How can I change the opend menu gray color, and hover black color?

    http://kertvarosi-iskola.hu

    Thanks!

    Sziszi

    #86958
    Pratik
    Participant

    Hi @Sziszi,

    For opened menu and hover color, use following code:

    
    #header #mainmenu ul li a:hover, #header #mainmenu ul li.current-menu-item a, #header #mainmenu ul li.current-menu-parent a, #header #mainmenu ul li.current_page_item a, #header #mainmenu ul li.current_page_ancestor a, #header #mainmenu ul li:hover > a
    {
        background-color: #dd3333; /* Menu Background Color */
        color: #ffffff; /* Menu Text Color */
    }
    

    Change hex values to any color you want.

    Regards,
    Pratik

    #86962
    Robert
    Participant

    Hi!

    Thanks, but menu item color still gray and menu hove still black.

    Sziszi

    #86967
    Robert
    Participant
    #87019
    Pratik
    Participant

    HI @Sziszi,

    The menu hover and current item color is the one you have added via CSS. It has changed. Can you confirm it, or is there still an issue?

    Regards,
    Pratik

    #87046
    Robert
    Participant

    Hi!

    I want to chang the gray menu item color and the black color. if it is possible.

    http://www.kertvarosi-iskola.hu/menu.png

    Thanks!

    #87048
    Mahesh
    Participant

    Hi @sziszi,

    For changing the menu item color and background color, add the following CSS:

    #header #mainmenu ul li ul li a:hover, #header #mainmenu ul li ul li:hover > a {
      	background-color: #008000;
    }
    #header #mainmenu ul li ul li a {
        color: #0000ff;
    }

    Note: Please change the color hex value as desired.

    Regards,
    Mahesh

    #87049
    Robert
    Participant

    Hi!

    Great, works perfect!

    Thank you!
    Sziszi

    #87064
    Mahesh
    Participant

    Hi @sziszi,

    Thank you for your appreciation.
    Have a nice day!

    Regards,
    Mahesh

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Menu text and background color’ is closed to new replies.