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

    HI, is it possible wirh enfold have a layout like http://www.lupidiromagna.it with logo over slider ?

    #584260

    Hi unicaweb!

    Sure, can you please post the link to your website?

    Best regards,
    Yigit

    #584267

    I send you admin credentials.

    #584273

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .logo {
        height: 150px!important;
        width: 150px!important;
    }

    Regards,
    Yigit

    #584276

    Yes I have already try this code but when page scroll logo is over all and it is not very correct. In this site http://www.lupidiromagna.it logo is hidden with page scroll and I need to set like this.

    #584282

    Hi!

    Please go to Enfold theme options > Header > Header Behaviour and uncheck “Sticky” option.

    Cheers!
    Yigit

    #584289

    Yes but main menu is not fixed is impossible?

    #584291

    Hey!

    Would you like to make header fixed but not display logo when scrolled down? If so, please add following code to Functions.php file in Appearance > Editor

    function avia_custom_logo_app(){
    ?>
    <script>
    jQuery(window).scroll(function(){
    if(jQuery(this).scrollTop() > 100) jQuery('.logo img').addClass('logoop');
    if(jQuery(this).scrollTop() < 100) jQuery('.logo img').removeClass('logoop');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'avia_custom_logo_app');

    then add following code to Quick CSS

    .logoop { opacity: 0 !important; }

    and then choose to display sticky header in Enfold theme options > Header > Header Behavior. If that is not what you meant, please elaborate

    Best regards,
    Yigit

    #584297

    and if you like it with shrinking header try this solution here:

    .responsive .logo {
    display: block
    }
    
    .logo, .logo a {
        overflow: visible;
    }
    
    .logo img {
        height: 180%;
        max-height: 225px !important
    }
    
    @media only screen and (max-width: 767px){
    .responsive .logo {
        height: 120px !important;
    }
    .responsive .logo a {
        display: block;
    }
    .responsive .logo img {
        max-height: 220px;
    }
    }
    
    @media only screen and (max-width: 400px){
    .responsive .logo img {
        max-height: 175px !important 
    }
    .responsive .logo a {
        display: block;
    }
    }

    see here : http://www.pirol-hifi.de

    you have to play with the values a little bit.
    on that page i have header value at custom height 125px

    #584555

    Hi!


    @guenni007
    Thanks for sharing your solution :)

    Regards,
    Yigit

    #584560

    Thanks @guenni007

    How to change hover menu color background like this http://www.maxlaw.co.za/

    #584569

    Hey!

    Please go to Enfold theme options > Advanced Styling and edit “Main menu links” and make sure to check “Apply only to mouse hover state”

    Best regards,
    Yigit

    #584591

    Thanks work better! Can set a background color for selected page?

    #584598

    Hi!

    You can simply edit your color section elements and change their background colors :)

    Cheers!
    Yigit

    #584616

    I need to cnange background color menu for active page like this http://www.maxlaw.co.za/testimonials/

    #584619

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .av-main-nav > li.current_page_item > a {
        background: lightblue;
        color: white!important;
    }

    Best regards,
    Yigit

    #584624

    I add this

    .av-main-nav > li.current_page_item > a {
    background: #a18d77;
    color: white!important;
    }

    but menu item background color are not color

    #584630

    Hi!

    Can you please post a screenshot and show the changes you would like to make? You can upload your screenshots on imgur.com or Dropbox public folder and post the links here.

    Best regards,
    Yigit

    #584636

    Like this http://imgur.com/kLzD4Ks the background color of item menu for active page must be different.

    #584890

    Hi!

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

    Regards,
    Yigit

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