Drop down menu color not changed

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

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #18073
    sunnydaze
    Customer

      Hello,

      I’ve changed the accent color to teal via the Customizer.

      However, when you click on the menu at the top, the dropdown items are still in orange.

      Here’s a link to a screenshot
      https://www.dropbox.com/sc/7h708yag9n6exd7/AABeE27AHB6ULbTM3ZlG1Lhma

      How do I fix this?

      Thank you,
      Agnes

      #18075
      Wes
      Moderator

        Ah, I know what it is. I’ll need to add this to the next update. Give me a sec and I’ll tell you how to get it fixed. I’m going to make some changes and make sure it works on the demo.

        #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.

          #18078
          sunnydaze
          Customer
            This reply has been marked as private.
            #18080
            sunnydaze
            Customer
              This reply has been marked as private.
              #18083
              Wes
              Moderator
                This reply has been marked as private.
              Viewing 6 posts - 1 through 6 (of 6 total)
              • You must be logged in to reply to this topic.