Reply To: Drop down menu color not changed

Homepage Community Forums Aspire Theme Support Drop down menu color not changed Reply To: Drop down menu color not changed

#18077
Wes
Moderator

    Ok just got it fixed. Are you able to access the output.php file in your lib folder? If so, you’ll see a section like this –

    	$css .= ( aspire_customizer_get_default_accent_color() !== $color ) ? sprintf( '
    		a,
    		.entry-title a:hover,
    		.image-section a:hover,
    		.image-section .featured-content .entry-title a:hover,
    		.site-footer a:hover {
    			color: %1$s;
    		}
    
    		button,
    		input[type="button"],
    		input[type="reset"],
    		input[type="submit"],
    		.archive-pagination li a:hover,
    		.archive-pagination .active a,
    		.button,
    		.widget .button,
    		.front-page-2 .image-section,
    		.popular {
    			background-color: %1$s;
    		}

    I added this in the first section –

    .genesis-nav-menu a:focus,
    .genesis-nav-menu a:hover,

    And then I added this in the 2nd section –

    .genesis-nav-menu .sub-menu a:hover,
    .genesis-nav-menu .sub-menu li.current-menu-item > a

    In the end it should look like this –

    $css .= ( aspire_customizer_get_default_accent_color() !== $color ) ? sprintf( '
    		a,
    		.genesis-nav-menu a:focus,
    		.genesis-nav-menu a:hover,
    		.entry-title a:hover,
    		.image-section a:hover,
    		.image-section .featured-content .entry-title a:hover,
    		.site-footer a:hover {
    			color: %1$s;
    		}
    
    		button,
    		input[type="button"],
    		input[type="reset"],
    		input[type="submit"],
    		.archive-pagination li a:hover,
    		.archive-pagination .active a,
    		.button,
    		.widget .button,
    		.front-page-2 .image-section,
    		.popular,
    		.genesis-nav-menu .sub-menu a:hover,
    		.genesis-nav-menu .sub-menu li.current-menu-item > a {
    			background-color: %1$s;
    		}

    Let me know if you need help adding this in. I’d just need a temporary login if you do.