Home › Forums › Support › Site-title link,menu float-right › Reply To: Site-title link,menu float-right
Ok, back to the first post in the topic:
1. In the code you’re using to rearrange items, find this:
<p class="main-title" itemprop="headline"><a href="<?php echo apply_filters( 'generate_site_title_href', esc_url( home_url( '/' ) ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
And replace it with:
<p class="main-title" itemprop="headline"><?php bloginfo( 'name' ); ?></p>
2. Currently your menu is floated to the right but above the header. Have you tried moving it below the header in “Customize > Layout > Navigation Position”?
3. Try this CSS:
.inside-navigation {
float: right;
}
You’ll have to adjust your margin-left: 600px CSS for the sub-menu.
4. The width of your sub menu items seem to be adjusting the amount of text. Looks pretty standard to me?
5. You can add a border to the sticky navigation like this:
.main-navigation.navigation-clone {
border-bottom: 2px solid #222222;
}