Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #1056348

    Hi,

    Great theme. I love it!

    A few questions:
    1. Is it possible to add an image slider to the logo (+ main menu) area instead of a single logo image?
    2. How can I make the logo image stretch across the full logo area rather than be restricted to the 340px * 156px default size?

    Thanks.

    #1056376

    Hey smunksgaard,

    For #1 are you looking to scroll throuh multiple logos?

    #2 can be done via css, but it may be require some editing of the header file itself to adjust the menu positioning.

    Best regards,
    Jordan Shannon

    #1056496

    Hi Jordan,

    #1
    Yes, I would like to use a multi-image slider, as my slider-images contain the logo I would like to use.

    #2
    Could I perhaps ask for a sample code for making this with CSS?

    Thanks.

    Regards,
    Steen

    #1057737

    Hi Steen,

    You can refer to this post – https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area and add widget area to your header and then enable debugging mode – https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode to copy shortcode of your slider. I believe Easy Slider would fit better than other sliders :)

    Best regards,
    Yigit

    #1057771

    Hi Yigit,

    That almost did the trick!
    I added a ‘header’ widget to my header area and added shortcode to my Easy Slider. But, now I’m seeing a white “box” above and below my slider image – e.g. no full-width background. It seems like it is constrained inside a container. How can I change this for my header area?

    Thanks.

    Regards,
    Steen

    #1057775

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    #header .avia-slideshow {
        margin: 0;
    }
    #header .widget {
        padding: 0;
    }
    .container.av-logo-container {
        display: none;
    }
    
    

    Best regards,
    Yigit

    #1057805

    That did it. Thank you!!! :-)

    #1057894

    Hi smunksgaard,

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1058426

    Hi again,

    Small problem just occurred as a result of this.
    I can’t see the burger menu on mobile devices. Menu appears fine on PC and tablet screens, but on mobile there’s no menu at all.
    Is there some CSS fix for this?
    Thanks.

    #1059012

    Hi,

    Thanks for the update, though the mobile menu is displaying fine on my end using Chrome. Are you sure that you are not getting cached results?

    Best regards,
    Rikard

    #1059111

    Hi Rikard,

    I solved the issue late last night and didn’t make it put a follow-up comment on this thread.

    This CSS fix was giving me trouble, as it also completely removed the burger menu on smaller screens (iOS):

    .container.av-logo-container { 
      display: none; 
     }

    I found out that modifying it to below certain screen sizes fixed the issue:

    @media only screen and (min-width: 750px) {
    .container.av-logo-container { 
      display: none; 
     }}

    Thanks again for all you support.

    Kind regards,
    Steen

    #1059114

    PS. The complete CSS fix now looks like this:

    #header .avia-slideshow {
        margin: 0;
    }
    #header .widget {
        padding: 0;
    }
    
    @media only screen and (min-width: 750px) {
    .container.av-logo-container { 
      display: none; 
     }} 
    #1059156

    Hi,

    I’m glad you were able to get this resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Image slider in logo area’ is closed to new replies.