Reply To: How do I build the site?

Homepage Community Forums inSync Theme Support How do I build the site? Reply To: How do I build the site?

#15083
Wes
Moderator

    @Ridwan are you asking how to add “Home” as a link in your menu like the demo? – http://demo.appfinite.net/insync/ If so, you can head over to the Menu Page in your WP Admin, look under the “Pages” section (where you add your links)….then click the “View All” tab. Once you do that, the “Home” link will show up at the very top by default. Add that link and it will show up in front of your other links (just like it’s displayed in the demo).

    For the menu position/spacing – Yes you can push it over to the left by reducing the padding on the left side of each of the links in the menu. There is 16px padding on the left and right side of each link, so in order to move it all the way over and maintain the same space, look and feel, we’ll need to double the space on the right side to 32px and change the left padding to 0. Here is what it currently looks like on line 1771 –

    .nav-primary .genesis-nav-menu a {
    	border-bottom: 2px solid #333;
    	color: #fff;
    	padding: 10px 16px;
    }

    You can change the padding to the code below and it will adjust automatically in the way that you need –

    .nav-primary .genesis-nav-menu a {
    	border-bottom: 2px solid #333;
    	color: #fff;
    	padding: 10px 32px 10px 0;
    }

    Your menu is already aligned with the Logo, but there is padding in between each of the links which makes it appear as if it’s pushed over a little bit. The code above reduces the “left padding” to 0 which means your links will visually show up aligned with your logo.

    Let me know if that works.