Forum Replies Created

Viewing 30 posts - 5,971 through 6,000 (of 67,463 total)
  • Author
    Posts
  • in reply to: vertically center logo in header #1434411

    Hi,

    Thank you for the update.

    We made slight adjustments to the css code so that it also takes into account the top position of the logo when the header has shrunk or when scrolling. Please use this updated css code instead.

    .logo img, .logo svg {
      top: 15px;
    }
    
    .header-scrolled .logo img, .header-scrolled .logo svg {
      top: auto;
    }

    Best regards,
    Ismael

    in reply to: Mega menu submenu container with Woocommerce #1434408

    Hi,

    Did you remove the previous css code?

    .html_visible_cart #menu-item-2289 .avia_mega_div {
        opacity: 1 !important;
        display: block !important;
        left: -210px !important;
    }
    

    Please remove the css code above, then add this one to make the mega menu fullwidth when the cart is visible.

    .html_visible_cart #menu-item-2289 .avia_mega_div {
        width: 100vw !important;
    }

    Or post the login details in the private field so that we can test the changes properly.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Hide / Show Section #1434407

    Hey Steve,

    Thank you for the inquiry.

    What do you mean by “Section Window”? Could you please provide a screenshot or an example demonstrating this option in action? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    Best regards,
    Ismael

    in reply to: Bootstrap from Plugin kills sub page #1434406

    Hi,

    We have edited the avf_header_setting_filter filter in the functions.php file and made some adjustments to the custom script. The header is now transparent, with the slider displaying below it.

    
    function av_custom_inline_script_slider_banner()
    {
        wp_add_inline_script(
            'jquery',
            "(function($) {
                $(document).ready(function() {
                    $('#av-main-slider-banner').appendTo('.av-slider-banner-container');
                    $('#header').addClass('av_header_transparency');
                });
            })(jQuery);"
        );
    }
    add_action('wp_enqueue_scripts', 'av_custom_inline_script_slider_banner');
    
    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    function avf_header_setting_filter_mod($header)
    {
        if ( is_archive() || is_singular('post') ) {
            $header['header_transparency'] = 'header_transparency';
            $header['header_title_bar'] = 'hidden_title_bar';
        }
        return $header;
    }
    
    
    #av-main-slider-banner { display: none !important; opacity: 0; }
    .av-slider-banner-container #av-main-slider-banner { display: block !important; opacity: 1; }
    

    We also added this css code to keep the slider from displaying when it’s not yet appended to the av-main-slider-banner container.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Bootstrap from Plugin kills sub page #1434363

    Hi,

    Thank you for the additional info.

    If you need the header to be transparent on archive and single post pages, please include this code in the functions.php file.

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    function avf_header_setting_filter_mod($header)
    {
        if ( is_archive() || is_singular('post') ) {
            $header['header_transparency'] = 'header_transparency';
        }
        return $header;
    }
    

    Best regards,
    Ismael

    in reply to: less thumbnail columns for gallery on mobile #1434362

    Hey pelgrimrat,

    Thank you for the inquiry.

    Are you referring to the gallery above the footer area? The gallery seems to be responding correctly in mobile view, splitting into two columns instead of six. If you’d like to increase the number of columns, you can try using this css code

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top .avia-gallery.av-lslwymmy-767d1ca16b1f4d9c429a0176d305ae0e .avia-gallery-thumb a {
        width: 33%;
      }
    }

    Best regards,
    Ismael

    in reply to: Need more media query #1434361

    Hey cloud_studio1,

    Thank you for the inquiry.

    Have you tried adjusting the Masonry element’s Styling > Columns > Column count settings? You can select different number of columns for each breakpoint.

    Best regards,
    Ismael

    in reply to: Column padding on mobile #1434360

    Hey st,

    Thank you for the inquiry.

    You may need to adjust or reset the left position of the column element on mobile view. Please try this css code.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .flex_column.av-lsi2hb8k-6aee99cc1e1fcfe1529179ad547236c0 {
        position: relative;
        left: 0;
      }
    }
    

    The default value of the left property is 100px. After the adjustment, it should look like the following screenshot.

    // https://1drv.ms/i/s!AjjTfXSRbKTvgtxXjDgZ042XkpoRAQ?e=IJmlB2

    Best regards,
    Ismael

    in reply to: ENFOLD – Team Member Pga Sidebar #1434359

    Hi,

    Great! Glad to know that this has been resolved. Please feel free to open another thread should have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Menu help #1434358

    Hey Josh,

    Thank you for the inquiry.

    Which button are you referring to? Please provide a screensoht or post the site URL in the private field. You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: Dynamic CSS #1434357

    Hi,

    Based on the screenshot, the mime type error is generated from a minified stylesheet inside the wp-content > fusion-styles folder. Did you install another page builder or compression plugin?

    Best regards,
    Ismael

    in reply to: Adress fb and ig buttons in headerline #1434356

    Hi,

    Thank you for the inquiry.

    You may need to use the Widget Area element in the Advanced Layout Builder to display widgets in the content area. If you need to separate the widgets from your content and replicate the default layout of pages with a sidebar, use the Column elements.

    Best regards,
    Ismael

    in reply to: Non-valid Purchase Key for Support? #1434354

    Hey Michael Kormendy,

    Thank you for the inquiry.

    What is the email address that you’ve tried to use to register to the forum, and where did you get the purchase code? The purchase code should have the following format.

    1c389c9f-712c-410e1-1a79-424a26013f2e
    

    Please note that the purchase code is different from the private token. For more info, please check the following documentation.

    // https://kriesi.at/documentation/enfold/theme-registration/#toggle-id-4

    Best regards,
    Ismael

    in reply to: Logo bigger #1434353

    Hi,

    Thank you for the inquiry.

    You can add this css code to increase the maximum width of the logo.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #header .logo img {
        max-width: 200px;
      }
    }

    Default max-width value is 100px. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect.

    Best regards,
    Ismael

    in reply to: WEBSITE NOT UPDATING!! #1434352

    Hi,

    Thank you for the info.

    We were able to successfully update the “2024 Annual Pence Wealth Luncheon” page without encountering any issues. Did you figure out the problem?

    Best regards,
    Ismael

    in reply to: Portfolio Grid: How to change Mobile Title Font Size #1434351

    Hi,

    Thank you for the update.

    You may need to adjust the breakpoint in the css media query above to target smaller screens. Please try this css code.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top .grid-content h3 {
        font-size: 32px;
        text-align: center;
      }
    }

    Best regards,
    Ismael

    in reply to: enfold adjust height of header on blog #1434252

    Hi,

    Thank you for the update.

    Have you added the following css code? It removes the padding above the main container, causing the header to overlap with the heading.

    .responsive #top #main {
        padding-top: 0 !important;
        margin: 0;
    }

    You can override it by adding this css code.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 100px !important;
      }
    }

    Best regards,
    Ismael

    in reply to: Request to check page editing errors (Avia Layout Builder) #1434251

    Hi,

    Thank you for the update.

    We are still not sure about how the
    tag is being generated, but it gets removed when we update the page. Please review the links provided in the private field.

    Best regards,
    Ismael

    in reply to: Schrift (Font) ändern #1434249

    Hi,

    Thank you for the inquiry.

    It might be caching or the Enfold > Performance > File Compression settings. You may need to temporarily disable the cache plugin and the Enfold > Performance > File Compression settings to make sure that the changes take effect immediately. You can re-enable it back when you’re done editing.

    Best regards,
    Ismael

    in reply to: google map api not working #1434248

    Hi,

    Alright! Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Blog: Add header (transparent) to Archive page #1434247

    Hey Sebastian,

    Thank you for the inquiry.

    We replied here: https://kriesi.at/support/topic/bootstrap-from-plugin-kills-sub-page/#post-1434246

    Best regards,
    Ismael

    in reply to: Bootstrap from Plugin kills sub page #1434246

    Hey Sebastian,

    Thank you for the inquiry.

    For some reason, we can’t reply to your latest inquiry, so we replied here.

    This is about: https://kriesi.at/support/topic/blog-add-header-transparent-to-archive-page/

    We adjusted the hook in the functions.php file and created a small script ( https://pastebin.com/L11xieeS )

     

    Best regards,
    Ismael

    in reply to: Blog: Add header (transparent) to Archive page #1434242

    Hey Sebastian,

    Thank you for the inquiry.

    We adjusted the hook in the functions.php file and created a small script ( https://pastebin.com/VCTVksmD ).

     

    Best regards,

    Ismael

    in reply to: ENFOLD – Team Member Pga Sidebar #1434241

    Hi,

    Thank you for the screenshots.

    Have you tried disabling the Enfold > Sidebar Settings > Page Sidebar Navigation option? This should disable the default menu for nested subpages. If this didn’t work, please provide the login details in the private field so that we can check the site further.

    Best regards,
    Ismael

    in reply to: Link with lightbox only content option #1434240

    Hi,

    Glad to know this has been resolved! Please feel free to open another thread if you have more questions about the theme.

    Have a nice day!

    Best regards,
    Ismael

    in reply to: Inactive custom footer page #1434156

    Hey M-Graphics24,

    Thank you for the inquiry.

    We edited the Enfold > Footer > Default Footer & Socket Settings and deselected the Home page as Page based Footer. You might want to adjust the Footer Behavior (currently in beta) settings as well.

    Best regards,
    Ismael

    in reply to: vertically center logo in header #1434155

    Hey fogelfish,

    Thank you for the inquiry.

    The theme automatically centers the logo vertically relative to header height, but if you need to adjust the vertical alignment, you can add this css code.

    .logo img, .logo svg {
        position: relative;
        top: 100px;
    }
    
    .logo, .logo a {
        overflow: visible;
    }

    Adjust the value of the top property as you wish.

    Best regards,
    Ismael

    in reply to: Advanced Custom Fields broken since update #1434154

    Hi,

    Thank you for the update.

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect. Also, make sure to purge the cache and do a hard refresh. Once you have made the required modifications, you can re-enable the file compression settings. If the changes still haven’t applied, please provide the login details in the private field.

    Best regards,
    Ismael

    Hey StarSolutions,

    Thank you for the inquiry.

    Are you trying to move the submenu closer to its the parent menu item? If so, then you can try this css code.

    .av-main-nav > li > ul {
        margin-top: -50px;
    }

    Best regards,
    Ismael

    in reply to: Link from last Table entry carrying over the next section #1434152

    Hi,

    Thank you for the info.

    The closing tag was missing from the link in the last item in the table element.

    < a href="https://site.com/living-here/"><img src="https://finditinfairport.com/wp-content/uploads/2020/03/LivingHere-FIIF.png"> <--- missing closing tag
    

    We added the closing tag to fix the issue.

    Best regards,
    Ismael

Viewing 30 posts - 5,971 through 6,000 (of 67,463 total)