Forum Replies Created

Viewing 30 posts - 121 through 150 (of 34,100 total)
  • Author
    Posts
  • in reply to: cookie banner needs some work #1479667

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia_cookie_text {
    	max-width: 50%;
    	line-height: 12px;
    }

    Screen Shot 2025 03 18 at 6.08.00 PM

    Best regards,
    Mike

    in reply to: Enfold download #1479664

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Tab Section – Direct links for tabs #1479659

    Hi,
    Perhaps you copied the code from an email instead of the forum, or you have an error in your child theme functions.php file.
    Please include a admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: Setting up two new social profiles under Enfold 7.1 #1479658

    Hi,
    I tested your fontello-d73127ed.zip and added this php code to my functions.php

    function avia_add_custom_icon($icons) {
    $icons['mastodon'] = array( 'font' =>'mastodon-bluesky', 'icon' => 'ue800');
    $icons['bluesky'] = array( 'font' =>'mastodon-bluesky', 'icon' => 'ue801');	
    return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    function avia_add_custom_social_icon($icons) {
    $icons['mastodon'] = 'mastodon';
    $icons['bluesky'] = 'bluesky';
    return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    function avia_add_social_share_link_arguments($args){
        $mastodon = array('mastodon' => array("encode"=>true, "encode_urls"=>false, "pattern" => "https://www.mastodon.com/", 'label' => __("Share on mastodon",'avia_framework')));
    	$bluesky = array('bluesky' => array("encode"=>true, "encode_urls"=>false, "pattern" => "https://www.bluesky.com/", 'label' => __("Share on bluesky",'avia_framework')));
        $args = array_merge($mastodon,$bluesky, $args);
        return $args;
    }

    and this css to my quick css:

    #top #wrap_all .av-social-link-mastodon:hover a{
        color:#fff; 
        background-color:blue; 
    }
    #top #wrap_all .av-social-link-bluesky:hover a{
        color:#fff; 
        background-color:blue; 
    }

    and they both show in my social profiles:
    Screen Shot 2025 03 18 at 4.09.25 PM
    and in my “Profile Links At The Bottom Of Your Blog Post”
    Screen Shot 2025 03 18 at 4.11.09 PM
    and in the header:
    Screen Shot 2025 03 18 at 4.15.24 PM
    and in the “Share this entry” on blog posts:
    Screen Shot 2025 03 18 at 4.16.42 PM
    please give this a try.

    Best regards,
    Mike

    in reply to: Line appears under header in mobile views #1479489

    Hey ausgesonnen,
    This is from the top border of a section that you only show on mobile, to remove it try this css:

    #av_section_2.container_wrap.av-desktop-hide.av-medium-hide {
        border-top-style: none;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hey distortedimage,
    Try this css instead:

    #top .package-slider .avia-slideshow-arrows.avia-slideshow-controls a.prev-slide:before {
        content: "<" !important;
    }
    #top .package-slider .avia-slideshow-arrows.avia-slideshow-controls a.next-slide:before {
        content: '>' !important;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Screen Shot 2025 03 16 at 3.11.36 PM

    Best regards,
    Mike

    in reply to: horizontal gallery must click twice #1479487

    Hi,
    Glad to hear that you have this sorted out, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Tab Section – Direct links for tabs #1479486

    Hey amyncuih,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_action( 'wp_footer', 'ava_custom_script_tab_section',99 );
    function ava_custom_script_tab_section() {
        ?>
    <script>
    window.addEventListener('DOMContentLoaded', function() {
        (function($) {
            function scrollToTab(s, e) {
                $(s).on(e, function(event) {
                    var anchor, loc, cur, hash, tab, parent, pos;
                    if( e == 'load' ) {
                        loc = window.location.hash;
                        hash = loc;
                    } else {
                        loc = $(this).attr('href');
                        hash = loc.substring(loc.indexOf('#'));
                    }
                    tab = $('.av-section-tab-title[href="'+ hash +'"]');
                    parent = tab.parents('.av-tab-section-outer-container');
                    pos = parent.offset();
                    tab.trigger('click');
                    if(hash) {
                        setTimeout( function() {
                            $(window).scrollTop( pos.top - 100 )
                        }, 100 );
                    }
                });
            }
            scrollToTab( '.avia-buttonrow-wrap a', 'click' );
            scrollToTab( window, 'load' );
        })(jQuery);
    });
    </script>
        <?php
    }
    
    add_theme_support( 'deactivate_tribe_events_calendar');

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Header on mobile view sticks #1479474

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Table with image pushing text below #1479473

    Hey finchkelsey,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia-data-table-wrap td {
    	vertical-align: top;
    }

    Screen Shot 2025 03 16 at 9.07.45 AM

    Best regards,
    Mike

    in reply to: navigation – Logo centred – Laptop view #1479468

    Hey Diana,
    Since your menu is too large for screens lower than 1500px you should display the mobile menu instead, I changed this for you
    Screen Shot 2025 03 16 at 8.39.36 AM
    Screen Shot 2025 03 16 at 8.40.03 AM
    clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Header on mobile view sticks #1479467

    Hey ausgesonnen,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 989px) { 
    .html_header_sticky.html_mobile_menu_tablet #top #wrap_all #header, .html_header_sticky.html_header_transparency #top #wrap_all #header, .html_header_sticky #top #wrap_all #header {
        position: absolute !important;
    }
    }

    Best regards,
    Mike

    in reply to: Theme is showing as “broken” in WordPress #1479466

    Hi,
    It looks like someone changed the directory name from “enfold” to “enfold-” with a dash:
    Screen Shot 2025 03 16 at 8.02.07 AM
    This maybe the issue, you will need to change this via ftp or your webhost file manager

    Best regards,
    Mike

    in reply to: Theme is showing as “broken” in WordPress #1479465

    Hi,
    When I check your parent theme enfold looks correct:
    Screen Shot 2025 03 16 at 7.36.15 AM
    and in the child theme the Template name looks correct:
    Screen Shot 2025 03 16 at 7.44.55 AM
    but I have not seen this code in your child theme functions.php:
    Screen Shot 2025 03 16 at 7.47.42 AM
    I tried commenting it out, but it didn’t help.
    Currently you have the Twenty Twenty-Five active, I’m not sure what your critical error was, perhaps the best solution is to restore from a older backup.

    Best regards,
    Mike

    in reply to: Can’t change a picture on homepage parallax #1479459

    Hey Sandra,
    First, click the edit button for the half column:
    Screen Shot 2025 03 16 at 7.17.07 AM
    then change under design:
    Screen Shot 2025 03 16 at 7.19.42 AM

    Best regards,
    Mike

    in reply to: why does @container query rule not work #1479458

    Hi,
    Thanks for sharing your findings.

    Best regards,
    Mike

    in reply to: Non Firefox Browsers Require Page Refresh #1479456

    Hey srsutherland,
    When I check your site the only broken image I see is the Canada Flag under the “About” title, but only when the ad-blocker is active.
    Try disabling your ad-blocker.

    Best regards,
    Mike

    in reply to: gallery media element not adding images to sets #1479455

    Hi,
    Please see this thread.

    Best regards,
    Mike

    Hi,
    Try replacing the file at enfold/framework/php/class-responsive-images.php with the linked file.
    Keep the old file as a fallback.

    Best regards,
    Mike

    in reply to: Demo not actived #1479453

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: hide post side navigation #1479452

    Hi,
    It looks like your mp4 are requested from http instead of https, so check the urls and update them.

    Best regards,
    Mike

    in reply to: hide post side navigation #1479437

    Hi,
    when I test in Chrome and click the cookie consent it doesn’t show again on other pages or in the iframe, it sounds like your browser is not storing the cookie.

    Best regards,
    Mike

    in reply to: Backgroundimage on mobile #1479424

    Hey northorie,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    #av-layout-grid-1 .flex_column {
        background-image: url(//schlafundseele.mindful-designs.de/wp-content/uploads/2025/03/Design-ohne-Titel-22-1.png) !important;
        background-repeat: repeat;
        background-position: center;
        background-size: contain;
        background-position: top center;
    }
    }

    Best regards,
    Mike

    in reply to: hide post side navigation #1479421

    Hey Munford,
    I don’t see a side navigation in your iframe, perhaps you have this sorted out?

    Best regards,
    Mike

    in reply to: Demo not actived #1479420

    Hi,
    The login is not admin so we can not see any of the settings.
    Try going to the theme settings and ensure that the “frontpage” is set and that the “blog” is not set, sometimes the same page is in both fields causing the error.
    Enfold Support 4019

    Best regards,
    Mike

    in reply to: One background image not showing on mobile #1479419

    Hi,
    This one right?
    Screen Shot 2025 03 15 at 1.44.17 PM

    Best regards,
    Mike

    in reply to: Setting up two new social profiles under Enfold 7.1 #1479418

    Hi,
    The “charter code” (ue800) is probably not correct, we would need to see the file. If you are using plain SVG files and not iconfont from Fontello.com then first convert it on Fontello
    converting a SVG on Fontello to create a icon font

    Best regards,
    Mike

    in reply to: Phone Number aligned to right of logo area #1479417

    Hi,
    please include an admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: Custom fonts for certain instances of headings #1479416

    Hi,
    I believe there may have been a issue with your font, I uploaded a new one from Google Fonts and added this css:

    #top #wrap_all .sacramento h2 {
    font-family: "sacramento", cursive;
    font-weight: 700;
    }

    and it seems to work now:
    Screen Shot 2025 03 15 at 1.14.49 PM

    Best regards,
    Mike

    in reply to: home page config #1479414

    Hi,
    Try excluding “slideshow.js”

    Best regards,
    Mike

Viewing 30 posts - 121 through 150 (of 34,100 total)