• Hi

    I’d like to change the navigation of this theme, how do I do it? Basically I’d like to add another product line to the main navigation across the top, but when I do this, the last item moves down to a 2nd line.

    Looking at it, there appears to be enough room if I was to move the navigation left a bit, as there is a lot of space if the navigation was to start from a point that was moved left somewhat. In a sense, I’d like to ‘justify’ the navigation more to the left, hope this makes sense. https://www.webro.com

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Looks like the theme uses a 12 point grid system to implement the layout. Your menu is site to span8 and your logo is set to span4 which makes the 12 points in your grid.

    You would have to over ride these values for your nav menu like this

    div .top-nav-menu .span8{
    width:85%;

    }
    #logo .span4{
    width:15%;
    }

    If it doesn’t change anything try adding !important after the width on both of them. Please note I didn’t try these values out only guessed at them. You might have to play around with them to make them work.

    I suggest you to use either Child Theme or Custom CSS/JS plugin for any customization rather doing directly in theme files, otherwise customization’s will lost on theme update.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How Do I Change Navigation?’ is closed to new replies.