• Hi, today I installed the theme (version 1.7.6) on two different wordpress sites and I when I change colors of the navigation menu I don’t see the changes on my website. The only color I can change is the background menu, though I cant change text or background for hovered menu.
    A few days ago I was able to change it without any problem on a different site.
    Do you have a solution for this?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • I also tried using this theme, but my navigation menu, is using default Blue for links, and Purple for Seen links. Makes it unreadable currently.

    I ran into the same issue and after digging into the details I found that modifying the following file: themes\terrifico\functions\framework-functions.php

    replace the following lines:

    if ( $nav_font_color !='' )
    	$output .= '#menu-main-navigation a {color:' . $nav_font_color . '!important}' . "\n";

    with the following:

    if ( $nav_font_color !='' )
    	$output .= '#site-navigation a {color:' . $nav_font_color . '!important}' . "\n";

    as you can see I replaced the ‘#menu-main-navigation’ id with ‘#site-navigation”. You should then be able to use the theme options admin panel to update the naviagation menu font color.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Navigation Menu: can't change colors’ is closed to new replies.