Viewing 30 results - 4,291 through 4,320 (of 142,855 total)
  • Author
    Search Results
  • #1462110

    In reply to: icon circle

    Hey Qgrafica_7,

    Please try the following in Quick CSS under Enfold->General Styling:

    #top #main span.av-milestone-icon {
      border-color: transparent;
    }

    Best regards,
    Rikard

    Hi,

    Great, I’m glad that Mike could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1462100

    Hi,

    Great, I’m glad that Mike could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1462096

    Thank you.
    I am a bit stumped. I thought it is a quite easy fix, but I run into problems.

    My idea is to first figure out how to get anything shown on top of the image. Lets say ‘Test’ and then when that works make it so that it only displays when the portfolio item has a certain attribute. But I am already struggling to get “test” to show up.

    Here is the code I found to change:

    $image = get_the_post_thumbnail( $the_id, $image_size, $image_attrs );
                        if( ! empty( $image ) )
                        {
                            $output .= '<div class="av_table_col portfolio-grid-image">';
                            $output .= "<{$link_markup[0]} data-rel='grid-" . avia_post_grid::$grid . "' class='grid-image avia-hover-fx'>{$custom_overlay} {$image}</{$link_markup[1]}>";
                            $output .= '</div>';
                        }
                        $output .= '<footer class="entry-footer"></footer>';
                        $output .= '</article>';
                        $output .= '</div>';

    And here is the code I change it to:

    $image = get_the_post_thumbnail($the_id, $image_size, $image_attrs);
    if (!empty($image)) {
        $output .= '<div class="av_table_col portfolio-grid-image">';
        $output .= "<{$link_markup[0]} data-rel='grid-" . avia_post_grid::$grid . "' class='grid-image avia-hover-fx'>";
        $output .= "{$custom_overlay} {$image}";
        $output .= "<div class='overlay-text'>test</div>"; // Add this line for the overlay
        $output .= "</{$link_markup[1]}>";
        $output .= '</div>';
    }
    $output .= '<footer class="entry-footer"></footer>';
    $output .= '</article>';
    $output .= '</div>';

    I also added the following passage to my style.css

    .grid-image {
        position: relative; 
        display: inline-block;
    }
    
    .grid-image img {
        display: block; 
        width: 100%;
        height: auto;
    }
    
    .overlay-text {
        position: absolute;
        bottom: 10px;
        left: 10px; 
        background-color: rgba(255, 255, 255, 0.7); 
        color: #dada21; 
        padding: 5px 10px; 
        border-radius: 5px; 
        font-size: 16px; 
        font-weight: bold; 
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    Unfortunately I dont get the text to show up.
    Where is my mistake?

    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

    #1462061

    although I believe that it is rather good if visitors can interact with autoplay videos. Turning it off is certainly better than leaving the website because a video is annoying!

    #1462059

    Hey reqonsult,

    Thank you for the inquiry.

    You can use this css code to disable the click overlay or the invisible play/pause control.

    #top .av-video-slide.av-video-playing {
        pointer-events: none;
    }

    Best regards,
    Ismael

    Hello again

    Sorry for the panic! Now I am safe – but I still need some support.

    1) I found out that it is possible to go to Theme Options -> Layout Builder.-> Debug Mode (Backend Only) -> And choose “Enable for admins only”. Here this setting does not break the site.If I do it via functions.php in the child theme the site breaks down.

    2) I managed to copy all my codes: meaning now all the toggles are back in the bottom Accordion. You can see them here: https://stegemueller.dk/faq-til-tng/

    3) I have cloned my live site to my test site via WP Toolkit. It works.

    4) Neither on the live site nor on the test site is it possible to edit the page by clicking on the bottom Accordion icon. Only a blank screen is returned.

    5) I have searched the code for <div> and </div>. There are none.

    6) Now my question is: How do I open the bottom Accordion. (I can open the top Accordion just fine).

    #1462050
    reqonsult
    Participant

    Is it possible to reduce the font size on mobile devices only? We are satisfied with the font size in desktop devices, but some text is partially cut off in the mobile view. Thank you.

    #1462047

    In reply to: Menu Items for mobile

    Hi,
    Try this css instead

    #top #header_meta .phone-info span {
        font-family: 'Raleway', sans-serif;
        font-size: 18px;
        font-weight: 900 !important;
        color: #000;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1462033

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

     #top .main_color input[type='email'] {
        border-color: #ffffff;
        background-color: #f6f7f9;
        color: #1e242f;
        font-weight: 300;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    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

    #1462032

    Hey Diana,
    The line is a after section feature, to remove try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .container_wrap {
        border-top-style: none;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hey Peter,
    I will try, in my example I wanted to use a menu created in WordPress, so first create a menu and save the menu name for the function code later:
    Enfold Support 6307
    For the logo we will add the image via css so you will need to add the custom classes button logo
    Enfold Support 6313
    For the CTA we add the classes button cta:
    Enfold Support 6311
    Then on the page you want to use this use the option Hide Header on this page:
    Enfold Support 6315
    and add the shortcode [custom_menu menu=”test menu with logo”] to your page, adjust the menu name to suit.
    Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function display_custom_menu($atts) {
        $atts = shortcode_atts(
            array(
                'menu' => '',
            ), 
            $atts, 
            'custom_menu'
        );
        $menu = $atts['menu'];
        if (!empty($menu)) {
            $args = array(
                'menu' => $menu,
                'container' => false, 
                'menu_class' => 'av-main-nav scmenu',
                'echo' => false
            );
            $menu_html = wp_nav_menu($args);
            $output = '<header id="header" style="position: absolute; top: 0;">';
            $output .= '<nav class="main_menu" style="display: flex; align-items: center; justify-content: center; width: 100%;">';
            $output .= $menu_html;
            $output .= '</nav>';
            $output .= '</header>';
            return $output;
        } else {
            return '<p>No menu specified or menu not found.</p>';
        }
    }
    add_shortcode('custom_menu', 'display_custom_menu');
    

    and this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #wrap_all .main_menu ul.scmenu {
    list-style: none;	
    }
    #top #wrap_all .main_menu .scmenu .menu-item a {
    	color: var(--enfold-header_replacement_menu_color);
    }
    #top #wrap_all .main_menu .scmenu {
    background-color: rgba(0, 0, 0, 0.2);
    }
    body:not(.wp-admin) li.button.logo {
    background-image: url(/wp-content/uploads/2024/07/logo_fysiotherapie_groningen.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 200px;
    margin-left: 0;
    }
    body:not(.wp-admin) li.button.logo a {
    opacity: 0;
    }
    #top #wrap_all .main_menu .scmenu .button.menu-item.cta {
    	background-color: orange;
    }

    and adjust the image URL to suit
    The expected results should be like this when a color section with a image is used:
    Enfold Support 6317

    Best regards,
    Mike

    Hi,
    On the demo page that you linked to, The sidebar menu is automatically created by the Page Sidebar Navigation option.
    Enfold Support 6295
    I believe the issue with the sidebar showing lower on the page when you add a tab section element is that it is a full width element and this moves the sidebar, there are a few elements like the color section and full width slider that is known to do this.
    Nonetheless you can add the Page Sidebar Navigation with a shortcode, first add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    //shortcode [avia_sidebar_menu]
    function display_avia_sidebar_menu() {
        ob_start();
        global $avia_config;
        if (function_exists('avia_sidebar_menu')) {
            $av_sidebar_menu = avia_sidebar_menu(false);
            if ($av_sidebar_menu) {
                echo $av_sidebar_menu;
            }
        }
        return ob_get_clean();
    }
    add_shortcode('avia_sidebar_menu', 'display_avia_sidebar_menu');

    then add this shortcode [avia_sidebar_menu]
    Enfold Support 6297
    and note that the theme option Page Sidebar Navigation must be enabled:
    Enfold Support 6295
    then it will show, note that the style is the same because it is in the sidebar:
    Enfold Support 6299
    but if you add the shortcode to your page it will have a different style, so add this css:

    #top #main .widget_nav_menu .nested_nav>li:first-child,
    #top #main .widget_nav_menu li {
    border: none;
    }
    #top #main .main_color .widget_nav_menu .current_page_item>a {
    color: var(--enfold-main-color-heading); 	
    }
    #top #main .main_color .widget_nav_menu a {
    color: var(--enfold-main-color-meta);	
    }
    #top #main .main_color .widget_nav_menu ul:first-child>.current_page_item {
    background: var(--enfold-main-color-bg2);	
    }
    #top #main .widget_nav_menu li a{
    border: none;
    padding: 6px 7px 7px 0;
    }
    #top #main .widget_nav_menu ul:first-child > .current_page_item {
        left: 0;
    }

    Enfold Support 6301
    so with the sidebar disabled it will look the same:
    Enfold Support 6303

    Best regards,
    Mike

    the_digital_manager
    Participant

    I started yet another (my 5th) Enfold web project (happy customer, mainly due to the awesome support that always helps me to tweak the theme). Each time I try to achieve an individual identity for the website and this time I’d like to tweak the main menu.

    Basically what I’m trying to achieve is to wrap a ‘transparant box’ around the menu with an adjustable background and font colour. The logo needs to be on the left (with another background colour of that socket) and on the right a CTA (make appointment) with another background colour in that socket (which I guess will be a custom link in the menu using the coloured button option, though the button needs to have the same hight as the rest) . This applies for devices starting from a screen size of tablets. The menu is on top of the content of the page (i.e. a full width slider or image)

    See https://drive.google.com/file/d/1twinJeP4c580lVkn9jbqnAKerd4e_bvd/view?usp=sharing for an example and find the url of a live example of another site in the private content.

    looking forward to realize another awesome enfold site!

    #1461969

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

    @media only screen and (max-width: 767px) { 
    .responsive #top #wrap_all #footer .flex_column {
    	margin-bottom: 0;
    }
    }

    The expected results:
    Enfold Support 6285

    Best regards,
    Mike

    #1461957

    Thank you for quick reply! Unfortunately, it did not work. I only need this for mobile version of footer (not desktop or tablet, etc.) and only the bottom area height I need to reduce as seen circled in red in screenshot available online at: https://imgur.com/a/q3mDIKX

    #1461956

    In reply to: Menu Items for mobile

    Try in quick css:

    @media only screen and (max-width: 1050px) {
        #top #header .av-main-nav > li.menu-item  {
            display: none !important;
        }
        #top #header .av-burger-menu-main {
            cursor: pointer;
            display: block !important;
        }
    }
    #1461944

    Also, is it possible to align the text in the middle vertically, so there is equal space on top and bottom for all the Portfolio Item Titles regardless of their length?

    #1461939

    Thanks, yes you can close the topic.

    FYI: I tried disabling both compression options (CSS, and Javascript),
    and in my situation, disabling the Javascript compression did the job.
    Compression of CSS is still on in my website.

    #1461938

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

    #footer .av_one_third > section {
    	margin: 0;
    }
    #top #footer {
    	padding-bottom: 15px;
    }

    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

    #1461928

    Hi,

    Great, I’m glad that we could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1461926
    This reply has been marked as private.
    #1461922
    This reply has been marked as private.
    #1461916

    Hi,

    1. Please try this instead:

    @media only screen and (max-width:767px) {
     .responsive .home #wrap_all #header {
        opacity: 1;
        position: fixed !important;
        top: 0 !important;
    padding-bottom: 20px !important;
      }
     .responsive .home #wrap_all #header.header_color.av_header_transparency {
        opacity: 0;
      }
    }

    2. Please try this to align the social media icons to the right:

    @media only screen and (max-width: 767px) {
      .responsive #header .social_bookmarks {
        text-align: right;
      }
    }

    Best regards,
    Rikard

    #1461907

    I’m also having issues with height footer area (mobile version only, not desktop) for my website: https://layarestaurant.com/

    How can I reduce the bottom section of footer (below text line “CALI RESIDENTS | ACCESSIBILITY” so it’s the same space height as top portion of footer (area above “RESERVATIONS BOTTOM”). I’m trying to keep footer slim as possible. Please advise!! Any help is greatly appreciated!!

    #1461904
    ardito
    Participant

    I use the Enfold TABs element frequently on multiple pages of my website.

    Recently the TABS stopped displaying correcly, all over my site.
    Currently, the first tab is shown, with tab title above it, and all other tabs are shown below the tab content.
    None of the tabs reacts to clicking.

    Example: test page with blank template

    #1461902

    Hi,
    i’ve added the link in the private section.
    As you can see, the social icons are centered instead of being top-right.
    Thanks

    “LINK HOME PAGE”: here it works correctly, but i want the code to work only on this page, and not on the other pages
    “LINK OTHER PAGE”: i want the header in the other pages to be static, instead of appearing only after scrolling

    #1461893

    Hi,

    Thank you for the update.

    The update should fix the banner, but we are not sure about the tabs. Try adding this css code to display the initial tab on load.

    #top div div.product .woocommerce-tabs #tab-description {
        display: block;
    }

    Best regards,
    Ismael

Viewing 30 results - 4,291 through 4,320 (of 142,855 total)