Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #758002

    Hi, would you please tell me how to change to green color bar on each side of the main menu to white.
    also in the footer how can I change the text: email address, last name, first name to white and same font as other font in footer and have the black blanks change to green.

    Thanks,
    Buddy

    #758023

    why – it looks good ;)

    i thought you did it yourself – i can see this in your code:

    #header_main_alternate {
        background: #8dc63e none repeat scroll 0 0 !important;
    }

    change it to:

    #header_main_alternate {
        background: #fff none repeat scroll 0 0 !important;
    }

    or goto Enfold options / general styling / tab was logo area and set the default background color to white (#ffffff)

    #758025

    by the way it seems to be a good idea to let the advanced menu let come a bit sooner than under 768px

    for example (you have to play a bit with 920px up and down to see what you need)

    @media only screen and (max-width: 920px) {
      .container #advanced_menu_toggle, #advanced_menu_hide {
          display: block;
      }
    .main_menu .avia-menu, #header_main_alternate, .fallback_menu {
        display: none;
    }
    }

    and you are a lucky guy because it is under 990px so on landscape ipad or tablets you have your normal nav !

    #758336

    i see you did it : but

    if you like to see allways your social buttons on top we had to do this too: (and do it for the same breakpoint as the toggler)

    @media only screen and (max-width: 920px) {
    #top .social_bookmarks {
        right: 50px !important;
    }
    }

    and now the hover style of your toggler (mobile menu) goes to not visible (#fff same as background)
    maybe this will be nice:

    .avia_desktop #advanced_menu_toggle:hover, .avia_desktop #advanced_menu_hide:hover {
        background-color: #fff;
        border-color: #0a0;
        color: #000;
    }
    #758701

    Hi @buddy1,

    Did you try out the suggestions posted by @guenni007 and did you have any luck with them?

    Best regards,
    Rikard

    #758885

    I did and they worked great, site looking good thanks to you all’s help.
    Buddy

    #758886

    I did and they work great. Thanks to you all for the great and quick help.
    Buddy

    #758903

    there is a screenwidth range when the social buttons are under advanced menu button – thats why i mentioned that you should correct it:

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.