Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #1362784

    Hi,
    in your documentation you have a description how to make a sticky transparent. Can you provide an additional script to make the normal header also transparent? I want to use your “transparent header” to choose a different color for the menu. But all the headers should be transparent.
    Thank you.

    Best regards,
    Vera

    • This topic was modified 2 years ago by Vera.
    #1362813

    Hey Vera,

    You can select for the header to be transparent in the Layout menu on each page, did you try that out? The transparent menu colour can be set under Enfold->Header->Transparency options.

    Best regards,
    Rikard

    #1362820

    Hi Rikard,

    thank you for your fast reply.
    The problem is I need two different colour settings for the navigation with transparent headers.
    Page 1: transparent header with text of navigation in grey
    Page 2: transparent header with text of navigation in white
    Maybe I should change the navigation colour with a class where it’s needed? Thank you for your suggestion.

    Bets regards,
    Vera

    #1362824

    Hi,

    Thanks for the clarification. It would probably be best if you change the menu colour on the page which is different from the other using custom CSS. If you need help with that, then let us know on which page you want to make changes on.

    Best regards,
    Rikard

    #1362863

    Hi Rikard,

    thank you for the reply. If you could help with that it would be great.
    If the solution is: change the colours of the navigation for a “transparent header” for a specific page I would have to change the logo here too.

    Best regards,
    Vera

    #1362884

    Hi,

    Thanks for that. So you don’t want to change anything on the page you linked to? It would be better if you linked to a page where you want to change either the menu colour or the logo.

    Best regards,
    Rikard

    #1362924

    Hi Rikard,

    sorry for being confusing. Now the link shows the the page where I’d like to change the navigation color and the logo image for the transparent header.

    Best regards,
    Vera

    • This reply was modified 2 years ago by Vera.
    #1362951

    Hi,

    Thanks for that. Please try this in Quick CSS:

    .page-id-591 .header_color.av_header_transparency .av-main-nav > li > a .avia-menu-text {
      color: #000;
    }

    I’m not sure which image you are looking to replace the logo with though?

    Best regards,
    Rikard

    #1363019

    Hi Rikard,

    thanks for the code. Unfortunately it doesn’t change the colors. I cleared the cache.

    Best regards,
    Vera

    #1363066

    Hi,

    Please send us a temporary WordPress admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply.

    Best regards,
    Rikard

    #1363153

    Hi Rikard,

    here come the details.

    Best regards,
    Vera

    #1363154

    allthough Rikards css is correct – the enfold original css has two ID’s in the selector. An ID has a much more higher specifity than the classes – so try:

    #top.page-id-591 #header.header_color.av_header_transparency .av-main-nav > li > a .avia-menu-text {
       color: #000
    }
    #1363163

    Hi Guenni007,

    thank you for the code, but it has no effect either.

    Best regards,
    Vera

    #1363173

    i do not see the page it concerns – please proof if the page-id is correct
    or post a link to the site – i do not see as a participant the hidden private Content Area.
    And again : look if you have missed to close some curly brackets in your quick css ( sometimes this happens on media query rules )
    because every rule after this – will be ignored.

    #1363177

    Hi Guenni007,

    sorry, I didn’t realize that you aren’t a team member. The page is: https://katjaroemer.de/profil/

    Best regards,
    Vera

    • This reply was modified 2 years ago by Vera.
    • This reply was modified 2 years ago by Vera.
    #1363211
    /***  standard logo visible on transparency  ***/
    #top.page-id-591 .av_header_transparency.av_alternate_logo_active .logo a > img, 
    #top.page-id-591 .av_header_transparency.av_alternate_logo_active .logo a > svg {
      opacity: 1;
      filter: alpha(opacity=1);
    }
    
    /*** font color on transparency  ***/
    #top.page-id-591 #header.header_color.av_header_transparency .av-main-nav > li > a .avia-menu-text {
      color: #000
    }
    
    /*** font color after scrolling down ***/
    #top.page-id-591 #header.header_color .main_menu ul:first-child > li > a {
      color: #000
    }

    by the way: only in very rare cases it is necessary to use the custom.css, mostly it is enough to use the quick css for the settings.
    and please copy&paste the code above – it is important to preserve non-spaces between some classes at the same element. ;)

    #1363218

    Hi Guenni007,

    great, that works fine.

    And thank you for mentioning the custom.css: I tested this here because I want to use it on an other website with more customizing where the Quick CSS gets a bit crowded. Do you recommend an other method in case there is more adapted CSS?

    Best regards,
    Vera

    #1363230

    Well – i use nearly almost the quick css – the only thing that always bothers me is that the window widths are limited. I’m now working on a high-resolution 4k 32” monitor. So I want to be able to take advantage of that.

    I put in my child-theme functions.php file:

    function admin_head_mod() {
    echo '<style type="text/css">
      #avia_options_page .live_bg_wrap .main_h3 { font-size: 36px !important; }
      #avia_options_page .content_p, #avia_options_page .bg2 { font-size: 24px; }
      #avia_quick_css .avia_description {float: none;margin-bottom: 20px !important;padding-left: 0 !important;width: 98%}
      #avia_quick_css .avia_control {float: left;max-width: 98% !important;width: 98% !important}
      .avia_footer_links li {float: left;padding-right: 20px}
      .avia_footer .avia_footer_save {float: left}
      .avia_reset {display: none !important } 
      #avia_options_page { max-width: 3000px!important}
    </style>';
    }
    add_action('admin_head', 'admin_head_mod');

    however, the latest enfold versions now have a “Theme Reset All Options” button on the import/export tab – I already include this in the code as seen above.

    #1363269

    Oh thank you. I’ll try that immediately.

    The support here is really extraordinary!!

    Best regards,
    Vera

    #1363272

    Hey,

    Thanks for your help as always @guenni007 :)

    Regards,
    Yigit

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