Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #536429

    Hi,
    i use transparent header on several sites in my page. is it possible to declare the colours of the navigation? Cause sometime one pictures has a dark background and sometimes a white background.

    regards

    #536486

    Hi xxtita!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and change page ID to match your page’s ID

    .page-id-2890 #wrap_all .av_header_transparency .main_menu ul:first-child > li > a {
        color: orange!important;
    }

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.

    Best regards,
    Yigit

    #536526

    ok, thanks – this is cool for the navigation. Is there also an option for the logo?
    So the logo appears in original color and not the “white” transparency-style.
    Or is it possible to have an transparent header without all alternative colors and no background?

    #536528

    Hi!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if(is_page(9) )
        {
        $logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
        }
        return $logo;
    }

    Regards,
    Yigit

    #536537

    works, thank you for all your support – every day.

    #536541

    Hi!

    You are welcome, glad we could help – every day :)
    Let us know if you have any other questions or issues

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘header transparency, no alternate color’ is closed to new replies.