• I’m having trouble identifying where to change the font color from white to another color for the two following areas:

    top navigation (currently just homeschooling in florida)
    middle navigation (under the slider)

    the url is https://homechoiceacademy.com/

    can someone take a peak and see if they can spot it?

    i’ve even gone through and everything font related that’s currently in white and still cant get the nav items to a different color.

    thanks in advance

Viewing 5 replies - 1 through 5 (of 5 total)
  • rather than trying to change it using:

    .sf-menu a {

    use this:

    .sf-menu li a {
    color: #000;
    }

    Should work.

    Thread Starter vbpartners

    (@vbpartners)

    Thanks but it didn’t work…. any other suggestions?

    really appreciate it though…

    Around line 4281 within your style.css file you’ll see the following css style (below). Simply change the color (white) to the color of your choosing (eg. color: #000;).

    This will change both the top nav and the middle nav text colors.

    .dark-style-theme .footer_widget_midle a,
    .dark-style-theme .footer_widget_midle div a,
    .dark-style-theme .footer_widget_midle div div a,
    .dark-style-theme .bottom-menu a,
    .dark-style-theme .top-menu a,
    .dark-style-theme .sf-menu li a {
        color: white;
    }
    Thread Starter vbpartners

    (@vbpartners)

    thanks for the idea…. it didnt work but it did get me to look in another area and i found it… it was adding:

    .green-color-theme .sf-menu li a { color: #4c5b05; }

    thanks to you both for helping ??

    No probs! Happy to help.

    Can you please mark this post as resolved. Thanks for that ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Changing font color in nav/menu’ is closed to new replies.