Viewing 30 results - 1,981 through 2,010 (of 142,845 total)
  • Author
    Search Results
  • #1479760

    Hi!

    Thank you for the inquiry.

    You can download the fontello zip file from the following thread and follow the instructions in order to add the new social icon in the list: https://kriesi.at/support/topic/setting-up-two-new-social-profiles-under-enfold-7-1/#post-1479658

    Best regards,
    Ismael

    #1479759

    Hey Christopher,

    Thank you for the inquiry.

    We added this code in the Quick CSS field to hide the extra language switcher in the main header.

    #header_main .avia_wpml_language_switch {
        display: none;
    }

    Please make sure to purge the cache before testing.

    Best regards,
    Ismael

    #1479745

    In reply to: Scrolling Textfield

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1479736

    Thank you! topic can be closed!

    #1479733

    HI Rikard,

    it’s fine to close this topic – thanks so much for your help :)

    best
    Eugenie

    #1479723
    amanda-mdllc
    Participant

    Good Morning I am trying to center the top socket phone info area. I have the code in there and I’ve tried several different things and I cannot seem to get it to corporate. Can you please help me? Details in the private link area.

    #1479720

    In reply to: shrink header

    It is quite simple: for now the header simply scrolls with content on all devices since the client needs the page to function tomorrow. It is doing that now but there is still too much space between header and content. When I reduce the padding of the top of the text disappears. Please send other sollution.

    #1479719
    agentur2c
    Participant

    Dear Enfoldteam,
    i tried to set the Header on logo left, TopMenu left. Logo and the normal text are in one line on the left side. The Topmenu is indented to about 20px, i guess on behalft of the normal distance between every item, this must be the half of this distance.

    Anyway it does not look good. Are there any options to fix this?

    Thanks a lot!

    Regards,
    Constanze

    #1479711

    In reply to: shrink header

    if header scrolls away – think of correcting the padding-top for #main
    _____________

    PS: I’m sure you’ll agree that it’s best to save this for another day, until the moment you have a clear idea of what your header should look like and how it should behave. I know you’re working on it, but just be aware that many of the solutions found wouldn’t work with a shrinking header. I’m sorry to say that I think we’ve lost time.

    The next problem we might encounter is with mobile devices. Unfortunately, Enfold doesn’t provide a shrinking header for these, so it uses the scroll variant. But don’t worry, there’s a way around this! If we can adjust this (using a child theme avia-snippet-sticky-header.js), we can make sure your header reacts as you like it. So, what do you think, how big should it be at the start (maybe relative to the screen height)? And then, how small should it get?

    Is this still the usual support we’re dealing with? You might want to consider getting in touch with a web design freelancer. ;)

    I would image you have done a basic check on this function.

    The problem does not occur if you click VIEW PAGE from the bar at the top of the page.

    But it does if you reload the page or load the page from front end cache when signed out.

    Something is preventing the animation on the text running.

    I’ve swapped the elements to colour sections with background images instead of full width sliders which has solved the issue.

    But this is still a bug present in Enfold.

    #1479692

    by the way: on former times it is better to place the anchor-tag inside the heading-tag (as enfold do with f.e. entry-title etc.)
    since html5 / xhtml this is not mandatory. You can have it vice-versa:

    function use_text_logo_only($logo){
        $link = apply_filters( 'avf_logo_link', home_url( '/' ) );
        $logo_tag = "h1";
        $logo_heading = "My Website Textlogo";
        $alt = get_bloginfo( 'name' );    
        $title = get_bloginfo( 'name' );
       
        $logo = '<a class="logo text-logo" href="'.$link.'" alt="'.$alt.'" title="'.$title.'"><'.$logo_tag.'>'  .$logo_heading.  '</'.$logo_tag.'></a>';
        return $logo;
    }
    add_filter('avf_logo_final_output','use_text_logo_only');

    to aline that heading with f.e. navigation to the right some css is needed:

    #top .logo.text-logo  {
      display: flex;
      justify-content: left;
      align-items: center;
      width: auto;
    }
    
    #top .logo.text-logo h1  {
      margin: 0 !important;
      font-size: 30px;
    }

    #1479688
    THP Studio
    Participant

    Hey Mike,

    you helped me the other day with some CSS for a transparent header on mobile:

    I’m still working on it, but I discovered that the code I had found elsewhere on the forum isn’t playing nicely with pages that don’t have a transparent header – it makes the header cover parts of the page, in this case the breadcrumbs.

    This is the code that is the problem, but without it the transparent header doesn’t seem to work:

    @media only screen and (max-width: 768px) {
    .responsive #top #wrap_all #header { 
            position: absolute;
    }}

    So the code I use currently is:

    @media only screen and (max-width: 768px) {
    .responsive #top #wrap_all #header { 
            position: absolute;
    }}
    
    @media only screen and (max-width: 768px) {
    #top #wrap_all .av_header_transparency {
    	background: transparent;
    }}
    
    @media only screen and (max-width: 768px) { 
    .responsive #top .av_header_transparency.av_alternate_logo_active .logo a>svg {
        opacity: 0;
    }
    
    .responsive #top .av_header_transparency .logo .subtext.avia-svg-logo-sub {
        display: block;
    }
    }

    But it needs a tweak to not wreck pages without a transparent header. See private for an example – homepage transparent, other pages not but hiding the breadcrumb bar due to this issue.

    Can you supply some updated CSS please? (even better would be to have proper transparent header on mobile support in the theme options…)

    Thanks

    Tim

    #1479687
    Christopher
    Participant

    Hello,

    I am trying to disable the standard language flags in the Header Top Bar (frontend).
    I managed to hide them via css at first, but they appeard again, after activating a flag in the main menu list.

    I only want a flag to appear under the last menu item not in the top bar.

    The problem appears only on the german version of the site.
    I have tried varios solutions (CSS and PHP) i found in your forum but without success.
    I contacted WMPL support but they have been unable to help, because it seems to be part of Enfold.

    Tried this in functions.php:

    //————————————————————–
    // Remove Enfold Language Switcher
    //————————————————————–
    function avia_remove_main_menu_flags(){
    global $avia_WPML;

    add_filter( ‘wp_nav_menu_items’, ‘avia_append_lang_flags’, 9999, 2 );
    remove_filter( ‘wp_nav_menu_items’, [ ‘avia_WPML’, ‘handler_append_lang_flags’ ], 9998, 2 );
    remove_filter( ‘avf_fallback_menu_items’, [ ‘avia_WPML’, ‘handler_append_lang_flags’ ], 9998, 2 );
    remove_action( ‘avia_meta_header’, ‘avia_wpml_language_switch’, 10 );
    remove_action( ‘ava_main_header_sidebar’, ‘avia_wpml_language_switch’, 10 );
    }
    add_action(‘init’,’avia_remove_main_menu_flags’, 9999);

    Best regards,
    Christopher

    #1479676

    Hi,

    Thank you for the short clip.

    The extra space is caused by this css rule:

    .html_header_top #top #main {
        padding-top: 300px !important;
    }

    Adjusting the top padding to 230px should remove the unwanted space.

    Best regards,
    Ismael

    #1479663

    forget about that – use: https://kriesi.at/support/topic/how-to-make-the-text-logo-h1/#post-1479660
    no subtext is needed!

    on shrinking header you need:

    #top .logo.text-logo,
    #top .logo.text-logo a {
      display: flex;
      justify-content: left;
      align-items: center;
      width: auto;
      margin: 0 !important;
    }
    #1479662
    CaptOM89
    Participant

    In the Avia Layout Builder, I’m using the Table Content Element on a page. On the Styling tab, I’ve selected Use the table as a Pricing Table + Default + Show empty cells. At this point, the table has a Heading Row at the top, followed by two Default Rows, with two columns.

    When viewed, the Heading Row has a red background with white letters.

    My question is, how are the colors (background, text) of the Heading Row controlled? Is there any way to adjust those colors, perhaps in the Enfold theme options? Or . . .?

    While I’m at it, I searched for documentation for how to use the Table Content Element in the Enfold documentation. Couldn’t find anything. Is there any such “how to” documentation?

    Thanks! Lance

    #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

    #1479656

    Please feel free to close this topic. Thank you.

    #1479653
    Stretchspot
    Participant

    Hello, The Slider image on my homepage is skewed. It looks fine on desktop and tablet but not mobile. I’m not sure if this is being caused by some css code. I have included all the css from my current site in private.

    #1479651

    you can do that via jQuery – but if that is the right way to influence SEO ? – i guess on seo purpose the solution from https://kriesi.at/support/topic/how-to-make-the-text-logo-h1/#post-1479497
    is ok.

    Edit : use the snippet on bottom.

    #1479648

    Topic: Website Not Loading

    in forum Enfold
    djsmbd
    Participant

    Hello,

    Recently, our website stopped loading. The only way to get it to work is to flush the cache.
    Any ideas? Can you login and take a look?

    Cheers!

    #1479627

    Hello,

    I am trying to disable the standard language flags in the Header Top Bar (frontend).
    I managed to hide them via css at first, but they appeard again, after activating a flag in the main menu list.

    I only want a flag to appear under the last menu item not in the top bar.

    The problem appears only on the german version of the site.
    I have tried varios solutions (CSS and PHP) i found in your forum but without success.
    I contacted WMPL support but they have been unable to help, because it seems to be part of Enfold.

    Best regards,
    Christopher

    #1479626

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1479625

    In reply to: Buttons don’t align

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1479618

    In reply to: Post Order

    Hey Ismael,

    And there is no way to override this in the Enfold theme? So that it will take the order from the Post Types Order plugin? It used to work and has now stopped working.

    Best,

    #1479609

    So..
    I have an old laptop on the same internet connection and I get the same result.

    By different internet network, you mean my ISP, right?

    I could give you remote access, with Windows 11, if that helps.

    Or you could have cPanel access.

    Thanks
    John

    #1479604

    Hi,

    Thanks for the update and for sharing. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1479602

    Hey Christopher,

    We have updated your user account, please try logging in again.

    Best regards,
    Rikard

    #1479593

    In reply to: Portfolio Masonry

    Hi,

    Isotope is a third-party script widely used by many themes and websites. Unfortunately, it’s not possible to control how it resizes or positions the items. If the order of the items is important, you can use the Post Slider or, as suggested above, adjust the Size Settings for the Masonry element.

    Best regards,
    Ismael

    #1479590

    Hey rixi,

    Thank you for the inquiry.

    You can add this css code to adjust the background color of the submenu items:

    #top .av-main-nav ul a {
        background: rgba(255, 255, 255, 0.5) !important;
    }

    Best regards,
    Ismael

Viewing 30 results - 1,981 through 2,010 (of 142,845 total)