Modifying the navigation color and font

Homepage Community Forums inSync Theme Support Modifying the navigation color and font

Tagged: , , ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #12091
    Netset
    Customer

      Hello,

      We love your theme. We’re working on a development version of our new site using your theme here – http://bit.ly/1fHPZ5D

      Since we are using a white background we’d like to change the normal and hover colors of the widget based top navigation (including hamburger) and possibly increase font size. We’ve looked and tried to adjust the CSS without luck. Can you point us in the right direction on where to make this update?

      Thanks!

      #12100
      Wes
      Moderator

        Since you’re using the blue theme, the code that adds the color is located on line 2648 in your css –

        .insync-blue .site-title a,
        .insync-blue .genesis-nav-menu a,
        .insync-blue .site-header .genesis-nav-menu a,
        .insync-blue .slider .entry-title a,
        .insync-blue .plans .button {
        	color: #fff;
        }

        You can take out this line – .insync-blue .site-header .genesis-nav-menu a and add it right under (or wherever you’re adding your customizations) –

        .insync-blue .site-header .genesis-nav-menu a {
        	color: #888
        }

        You can also add a font-size to that same code above if you need to.

        To change how it hovers, copy/paste the same code above and add :hover on the end like this –

        .insync-blue .site-header .genesis-nav-menu a:hover {
        	color: #000
        }

        To change the color of the hamburger/icon take a look around line 1965 in your css and change the color from there –

        #responsive-menu-icon::before {
            color: #fff;
            content: "\f333";
            font: normal 32px/1 'dashicons';
            margin: 0 auto;
        }
      Viewing 2 posts - 1 through 2 (of 2 total)
      • You must be logged in to reply to this topic.