Forum Replies Created

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • in reply to: Modify mega menu to be full screen width #1472917

    Guenni007,

    Thank you so much! I NEVER would’ve gotten there on my own — I can hack together some basic CSS, but I was getting overwhelmed on this one. Following is what I used based on your recommendations to modify the navigation and to give the links the nice “ease-in” effect, in case someone else needs a similar solution.

    /* === makes mega-menu drop down nav full width === */
    
    #top #header .avia_mega_div {
     position: fixed !important;
     width: 100vw !important;
     height: 0px;
     left: 0px !important;
     right: 0px !important;
     top: 120px !important;
     background-color: rgba(255,255,255,0.8) !important;
     backdrop-filter: blur(8px);
     border-radius: 0 !important;
     border: 1px solid #ffffff !important;
     opacity: 0 !important;
     display: block !important;
     transition: all 0.7s ease
    }
    
    #top #header .menu-item-mega-parent:hover .avia_mega_div {
     height: 220px !important;
     opacity: 1 !important;
     transition: all 0.7s ease !important
    }
    
    #top #header .avia_mega_div .menu-item {
     opacity: 0;
     position: relative;
     transform: translateY(-120%);
     transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55) 0.3s, opacity 0.3s ease ;
    }
    
    #top #header .menu-item-mega-parent:hover .avia_mega_div .menu-item {
     opacity: 1;
     transform: none;
     transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55) 0.3s, opacity 0.3s ease ;
    }
    
    @media (min-width: 990px) {
    #top #header .avia_mega_div > .sub-menu {
    padding: 15px 240px 15px 120px !important;
    }
    }
    
    @media (max-width: 989px) {
    #top #header .avia_mega_div > .sub-menu {
    padding: 15px 160px 15px 80px !important;
    }
    }

    I really do appreciate the help!!!
    Shane

    in reply to: Modify mega menu to be full screen width #1472842

    Not really, but it’s the only way I could figure out how to get the “look” the client wanted without installing a third-party plugin and reworking the navigation from the ground up, which I really don’t want to do. If there’s a better way to achieve the look the designer wanted, I’m all ears. ;)

    in reply to: Modify mega menu to be full screen width #1472840

    Hi guys,

    I’ve got the mega-menu navigation to be full width by modifying Guenni007’s CSS. Test with the “SERVICES” mega-menu item.
    My /dev/ site: https://bclaunchpad.com/dev58/

    /* === makes nav full width with addition of BLANK links === */
    #top #header .avia_mega_div {
      position: fixed !important;
      width: 100vw !important;
      left: 0vw !important;
      right: 1.5vw !important;
      top: 140px !important;
      background-color: rgba(255,255,255,0.8) !important;
      -webkit-backdrop-filter: blur(5px) !important;
      backdrop-filter: blur(5px) !important;
      border-radius: 0 !important;
      border: 1px solid #ffffff !important;
    }
    
    #top #header .avia_mega_div ul {
    background-color: transparent !important;
    }
    
    /* ================ */
    
    .blank-link > span.mega_menu_title { 
    clear: both !important; 
    color: transparent !important; 
    }

    Now, if you could possibly help me make the mega-menu (drop down) items ease-in from the top as in this example, that would be great.
    Sample site the client likes: https://qpokc.com/services/offset-printing

    Here’s the CSS from the example site, but I’m not sure how to target the nav in the enfold theme drop down mega menus.

    @media (min-width: 968px) {
      .l-navigation .dropdown {
        position: absolute;
        visibility: hidden;
        background-color: #01237A;
        width: 100%;
        top: 100%;
        left: 0;
        transition: height 1s ease-in;
        padding: 15px 0 15px 0;
        overflow: hidden;
        z-index: 1000;
        margin-top: -18px;
      }
    }
    .l-navigation .dropdown ul {
      max-width: 670px;
      margin: 0 auto;
      transition: none;
      position: relative;
      top: -10px;
      display: inline-block;
      text-align: left;
    }
    @media (min-width: 968px) {
      .l-navigation .dropdown ul {
        opacity: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 30px;
        row-gap: 5px;
      }
    }
    .l-navigation .top-link-li:hover .dropdown {
      visibility: visible;
    }
    @media (min-width: 968px) {
      .l-navigation .top-link-li:hover .dropdown {
        transition: height 0.2s ease-in;
      }
    }
    @media (min-width: 968px) {
      .l-navigation .top-link-li:hover .dropdown ul {
        transition: all 0.5s ease-in-out;
        opacity: 1;
        top: 0;
      }
    }

    Thank you in advance!
    Shane

    in reply to: Modify mega menu to be full screen width #1472725

    Hi Guenni007 and Ismael,

    I will look into the third party plugins, as well as the CSS tweaks you sent and see if any of those help. If I run into issues, I will reach back out.

    Much appreciated!
    Shane

    in reply to: Modify mega menu to be full screen width #1472320

    Sure, here you go.

    Here is the development site I am working on — Home page only right now (use the Services navigation menu link for comparison):
    https://bclaunchpad.com/dev58/

    Here is a website with a mega-menu in the style they want to emulate:
    https://qpokc.com/industries/associations-and-organizations

    Shane

    in reply to: Modify mega menu to be full screen width #1472298

    Hi Ismael,

    Thanks for the reply! What you sent is part of the issue, but more importantly, it is getting the drop down mega menu to run FULL WIDTH of the screen and appear seamless with the upper navigation while also easing-in the menu links subtly like the example I sent previously (Quik Print site).

    See screen capture in private content…

    I’ve already incorporated the clients desired underline when active/hover over the main nav links, but they want our white mega menus to run the full width of the screen, and have all navigation sub-links ease-in/down top-to-bottom on dropdown load just like the Quik Print site. I’m unsure how to integrate this. I tried, but nothing I did would get the width to be full screen and the ease-in/down top-to-bottom effect wouldn’t work.

    Any help is appreciated.
    Shane

    in reply to: Site using excessive CPU at SiteGround host #1400483

    Hi Ismael,

    Thanks for the response and notes. I will try these potential fixes later today and let you know how it goes. If these items do not fix the issues (and the third party can’t fix the PHP bug on their end), I will definitely clone the site and let you have a look.

    Thank you for the excellent support and for a wonderful theme!

    Sincerely,
    Shane

    in reply to: Fullwidth Easy Slider #1332035

    Ismael,

    I’ve tried testing in Firefox, Chrome and Safari. Once you resize your browser window after the initial page load, the height of the slider adjusts to the proper height. Is it possible in a recent update of the theme or enfold core css that the responsive or max-height/height settings are not loading in the correct order? Not sure why this would happen universally…

    Any insight is much appreciated.

    Shane

    in reply to: Fullwidth Easy Slider #1332034

    Hi Ismael,

    I am having this same issue on multiple (20+) client installs of the enfold theme. Seems as though there’s a new bug related to this. Can you and the team explore? I’ve tried a few quick CSS hacks, but nothing seems to work.

    /* fix issues with sliders having too much space below them */
    .avia-slideshow {
        position: relative;
        margin: 50px 0;
        width: 100%;
        clear: both;
        overflow: hidden !important; /* added */
        max-height: 720px !important; /* added */
    }
    
    .av_slideshow_full.avia-slideshow {
        margin: 0;
        overflow: hidden !important; /* added */
        max-height: 720px !important; /* added */
    }
    .avia-fullwidth-slider, .avia-slideshow-inner, #full_slider_1  {
        overflow: hidden !important; /* added */
        max-height: 720px !important; /* added */
    }

    Thanks,
    Shane

    Hi Rikard,

    Sorry for the delay.

    0) The jQuery updater worked for another enfold site that had this same issue, so we installed it after the disappearing images started on this site. However, it didn’t seem to have any effect in this case.

    The following things have been done, but pretty certain they didn’t contribute to this, as we’ve tried reverting the files back, with no effect when the disappearing images started.

    1) Tried some minor CSS edits, but those have been removed.

    2) Added the following per a thread on your forums to the end of the avia.js file to prevent Portfolio images from opening when clicked — we don’t actually want to use the separate pages/posts that open if clicked on these images, they are only for a visual grid.

    // disables single portfolios from opening
    jQuery(document).ready(function(){
    jQuery('.single-portfolio .content .featured').find('img').unwrap();
    }

    3) Added a custom google font to the header.php file: <link href="https://fonts.googleapis.com/css?family=Allura" rel="stylesheet"> This was an attempt to replace the default theme font for <u></u> tags ( font-family: 'Caveat', 'Helvetica Neue', Helvetica, Arial, sans-serif; ), however we have been unable to override this theme setting. We would still like to make this change, but right now we need to deal with the disappearing images. :)

    Let me know if there’s anything else we can help with to get this resolved.

    Thank you!

    in reply to: Masonry Gallery on wide screens #806093

    Yes, you may close this ticket. Thanks for the excellent support!

    in reply to: Masonry Gallery on wide screens #805777

    Thanks Yigit! Worked perfectly. :)

    in reply to: website not displaying correct after updates #614548

    Yigit,

    YES! That addition to the functions file fixed issues I was having on multiple Enfold theme installs across various hosting packages.

    These were my issues:
    – Images in Easy Slider and placed on pages (other than background images) were not displaying, but they were there in the background.
    – Testimonials and other slider elements were missing.
    – Dynamic content actions were missing.

    Thanks for this fix!!!

Viewing 13 posts - 1 through 13 (of 13 total)