-
AuthorPosts
-
August 16, 2013 at 6:12 pm #27933
Hi
I have the menu set as header with social icons and extra navigation. I need to know how to
1. change the upper navigation to make it different
2. Take out the second nav bar and only have the one at the very top; also how to change that color while keeping the social icons. Everything should justify right and should also have the search bar. and
3. how to take all the additional pages out of the footer, put in social icons, and have the additional navigation and tags column as in the demo.
Thanks
August 17, 2013 at 5:03 am #135865Hey,
1.) Different how?
2.) Are you using the header with bottom navigation? You can add this on your custom.css or Quick CSS to remove the bottom menu:
#header_main_alternate {
display: none;
}3.) Go to Appearance > Widgets. Add widgets on Footer – Columns widget areas to override the dummy widgets.
Please watch these videos to learn more about the theme: https://vimeo.com/channels/aviathemes
Regards,
Ismael
August 18, 2013 at 12:00 pm #135866That took it out but it also took the search tool out as well, I need the search back and would like to move the social icons to float vertically on the left side of the page, where the slider is? so as you scroll down it floats along with the page. Thanks
August 19, 2013 at 12:55 am #135867Hey,
Please delete the css code I above and use this instead:
.menu-main-menu-container ul li {
display: none;
}
#menu-item-search {
display: block !important;
}For the social icons, you can use this:
#header_main .social_bookmarks {
position: fixed;
left: 50px;
top: 20%;
}Regards,
Ismael
August 19, 2013 at 1:35 am #135868The search box is now below the top menu I had added before. I need it all the way on top with the other categories. And the social icons indeed went left but I need them to run vertical not horizontal, please and thanks, I appreciate your help.
August 19, 2013 at 1:46 am #135869and to also change their color…thanks again
August 19, 2013 at 2:34 am #135870Hey,
Please give us a screenshot of what you are trying to do. You can post it using imgur, dropbox, mediafire, clipular etc.
Thanks,
Ismael
August 19, 2013 at 11:23 am #135871the search bar is now in a second nav bar, much like the one that we already removed once, it needs to be all the way at the top with the rest. and I need the social icons to run up and down the side, not across/horizontal. Thanks
August 20, 2013 at 3:25 am #135872August 20, 2013 at 12:33 pm #135873https://www.dropbox.com/sc/aa3fn7mg1807pt4/nXaa-h92f4
The search icon came up where the second nav bar would be and the icons needs to be vertical and a different color. Thanks
August 20, 2013 at 8:34 pm #135874I changed the header to the small fixed and the social icons went away, can u give me the code to make them come back, still fixed left but still needing them vertical. Thanks
August 21, 2013 at 5:26 am #135875Hey,
Thanks for the screenshot. Please remove all of the code I gave you then use this instead:
#top .main_menu .menu li {
display: none;
}
#menu-item-search {
display: block !important;
}
#header_main .social_bookmarks {
left: 0;
top: 120%;
}Regards,
Ismael
August 22, 2013 at 2:12 pm #135876This does not work, the social icons do not show up at all, the header is set to small fixed and is in it’s correct position (https://www.dropbox.com/s/34bqq0yz63cntmr/Image11.jpg)
however, the menu drop down is now showing up like this https://www.dropbox.com/s/ekg1e9ejjnenvrq/Image2.jpg, instead of like this https://www.dropbox.com/s/h2emfn58r373pv2/Image3.jpg0. so I need the social icons to the side vertically and fixed, and need to be able to change their color. Thanks
August 23, 2013 at 12:35 am #135877August 23, 2013 at 12:50 am #135878Also, when I use html in the paragraph boxes, it looks perfect in preview but is not reading live. I need this so I can put a form in there as well as text. I also need to put a call to action button at the end of the nav bar AFTER the search bar. This does not work, the social icons do not show up at all, the header is set to small fixed and is in it’s correct position (https://www.dropbox.com/s/34bqq0yz63cntmr/Image11.jpg) so I need the social icons to the side vertically and fixed, and need to be able to change their color.
Please nevermind the prior question about the dropdown menu. Thanks
August 23, 2013 at 12:35 pm #135879Need some help here please
August 24, 2013 at 6:51 am #135880Hey,
Please use the header with bottom navigation. It is the header I use when I modified the theme. Also, small fix header will not show any social icons.
Regards,
Ismael
August 25, 2013 at 8:40 pm #135881Well, I had to go ahead and buy a plugin to take care of the social icons issue, the above fix did not work, no matter what header it was on. However, I still need an answer on how to put a call to action button (login)logout at the end of the nav bar AFTER the search bar. It needs to be apart from the nav bar. I found this: add_filter(‘wp_nav_menu_items’, ‘add_login_logout_link’, 10, 2);
function add_login_logout_link($items, $args) {
ob_start();
wp_loginout(‘index.php’);
$loginoutlink = ob_get_contents();
ob_end_clean();
if( $args->theme_location == ‘sub-menu’ ) {
$items .= ‘
- ‘. $loginoutlink .’
‘;
}
return $items;
}
but I need to know what the menu is. I am using the small fixed header, I have tried everything I could see in replacement of sub-menu, so . is this code right? and 2. if it’s not right I need the proper code for this,
Thank you.
-
AuthorPosts
- The topic ‘Header/Nav/footer’ is closed to new replies.