• Hello,

    I need a help about the site I was asked to help maintaining.
    Once completed all the implementations required, Typal Theme seems to not properly work: in the menu bar, only the Home button is now visible while all the others are white and become visibile when hovering with the mouse.

    How could this be possible?
    How to sort this problem out?

    Thanks a lot to all of you!
    Vincenzo

Viewing 8 replies - 1 through 8 (of 8 total)
  • Please provide a link so we can see the problem.

    Thread Starter vincenzomosca

    (@vincenzomosca)

    Here you are: https://www.amaceprano.org/

    Thnx

    You can add the following css rule to change the color

    .sf-menu a {
        color: <<text color >>;
        background: <<background color>>;
    }

    just replace the <<text color>> and <<background color >> with the colors you want.

    You can also change the hover state by adding the following code

    .sf-menu a:hover {
    color: <<your text color>>;
    background: << your background color>>;
    }

    this will make items change color when hovered on.

    Thread Starter vincenzomosca

    (@vincenzomosca)

    Unfortunately doesn’t work.
    I added this rule and the colors, but it seems the theme doesn’t take it.

    try adding !important after the rules

    .sf-menu a {
    color: <<text color >> !important;
    background: <<background color>> !important;
    }

    Thread Starter vincenzomosca

    (@vincenzomosca)

    ??
    still not working! ??
    may I modify the wrong file. in tab “aspect” there is a button “modify css” and i write the code you suggested in the window that appears.
    do i need to add the code elsewhere?

    you should place it in a customer css plugin or if you have a child theme place it in the style.css file.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Typal Theme menu problem’ is closed to new replies.