Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #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

    #135865

    Hey,

    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

    #135866

    That 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

    #135867

    Hey,

    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

    #135868

    The 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.

    #135869

    and to also change their color…thanks again

    #135870

    Hey,

    Please give us a screenshot of what you are trying to do. You can post it using imgur, dropbox, mediafire, clipular etc.

    Thanks,

    Ismael

    #135871

    the 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

    #135872

    Hi,

    Like I said, please give us a screenshot.

    Thanks,

    Ismael

    #135873

    https://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

    #135874

    I 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

    https://www.dropbox.com/s/8vocvsth1gilhkx/Image11.jpg

    #135875

    Hey,

    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

    #135876

    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)

    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

    #135877
    #135878

    Also, 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

    #135879

    Need some help here please

    #135880

    Hey,

    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

    #135881

    Well, 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.

Viewing 18 posts - 1 through 18 (of 18 total)
  • The topic ‘Header/Nav/footer’ is closed to new replies.