Forum Replies Created

Viewing 30 posts - 481 through 510 (of 25,536 total)
  • Author
    Posts
  • in reply to: visualizzazione pagina carrello su mobile errata #1419799

    Hi bassato,

    Can you try adding this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
        #top .woocommerce-cart-form .shop_table.cart .cart_item {
            display: flex;
            flex-direction: column;
            width: 100%;
        }
        
        #top .woocommerce-cart-form .shop_table.cart .cart_item td:before {
            content: attr(data-title) ": ";
            font-weight: 700;
            float: left;
        }
        
        #top .woocommerce-cart-form thead,
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-remove:before {
            display: none;
        }
        
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-remove, 
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-name, 
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-price, 
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-quantity {
            display: block;
            width: 100%;
            padding: 12px 20px;
        }
        
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-name, 
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-price, 
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-quantity {
            text-align: right;
        }
        
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-name .component-name {
            max-width: 220px;
            margin-left: auto;
            padding-left: 0;
        }
        
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-name .component-name * {
            float: right;
        }
        
        #top .woocommerce-cart-form .shop_table.cart .cart_item .product-quantity .quantity {
            width: 170px;
            margin-right: 0;
        }
    }

    Please let us know if it helps.

    Best regards,
    Nikko

    in reply to: Post image full width on desktop, tablet and mobile #1419798

    Hi BenjaminSpeedtsberg,

    I tried to check your site however it seems to be still in Maintenance mode:

    Sorry, we are currently updating our site - please try again later.

    Best regards,
    Nikko

    in reply to: images problem #1419796

    Hi Stilecatalini,

    Can you give us a screenshot? I can’t seem to find the issue you mentioned on the link you given, I have checked it using a windows desktop in Chrome, Edge and Firefox.

    Best regards,
    Nikko

    in reply to: Widget image dimensions (only phone) #1419795

    Hi Stilecatalini,

    Please try to use srcset in the html code, here’s an article that should be helpful: https://css-tricks.com/a-guide-to-the-responsive-images-syntax-in-html/#using-srcset

    Best regards,
    Nikko

    in reply to: Accordion will not close #1419794

    Hi Sckilayre,

    Thanks for giving us admin access.
    I changed Javascript File Merging And Compression from Enable – merge and compress all theme javascript files to Use minified theme javascript files without merging in Enfold > Performance. And it seems to have fixed the issue.
    Please review your website.

    Best regards,
    Nikko

    in reply to: vertical images #1419792

    Hi Tiziano,

    Yes, it’s possible, can you give us the link so we can check it? and try to give you some CSS codes to fix it.
    You can post the link in private content.

    Best regards,
    Nikko

    in reply to: Formular element Checkbox #1419791

    Hi Beat,

    I think Rikard’s code should work just fine, you seem to replace line-height 20px to 15px, and the original value is 14px that’s why you barely see any difference, try changing it back to 20px or a higher value and it should work just fine.

    Best regards,
    Nikko

    in reply to: Create a link in team member names #1419790

    Hi ijnavas,

    Yes, it’s possible, you can put this inside Team Member Name or Team Member Job Title:

    <a href="https://www.website.com/" target="_blank">Name/Title</a>

    Just replace https://www.website.com/ and Name/Title.
    You will see a warning when you add this, so make sure copy everything and only replace the parts mentioned.

    Best regards,
    Nikko

    in reply to: mailto link in Team Member #1419789

    Hi ijnavas,

    In the Icon Link please put:

    mailto: (Email address hidden if logged out) 

    just change the email address part.

    Best regards,
    Nikko

    in reply to: Round images instead of squared (team member) #1419788

    Hi ijnavas,

    I’m glad that Ismael could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Toggle content text in different color #1419787

    Hi RENZCOM,

    I’m glad that Rikard could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: “This Video Is Unavailable” error on videos #1419786

    Hi madisonstudios1,

    I’m glad that Rikard could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Overlapping columns with text and images #1419785

    Hi,

    Please add this class name to the last column right-column
    Then try to replace your code with this CSS code in Quick CSS:

    #top .overlapping-columns {
        position: absolute;
        z-index: 100;
        margin-left: 0;
        width: calc(29.333333333333332% + 400px);
        left: 50%;
        transform: translateX(-50%);
    }
    
    #top .right-column {
        float: right;
        margin-left: 0 !important;
    }

    Best regards,
    Nikko

    in reply to: Email protection with Enfold #1419541

    Hi Mike,

    You can add this PHP code in your child theme’s functions.php (or if you have a plugin that would allow adding PHP code):

    function obfuscate_email_shortcode($atts) {
        $email = isset($atts['email']) ? antispambot($atts['email']) : '';
        return '<a href="mailto:' . $email . '">' . esc_html($email) . '</a>';
    }
    add_shortcode('obfuscate_email', 'obfuscate_email_shortcode');
    

    Then when adding your email in a textblock for example, you write it like this:

    [obfuscate_email email=" (Email address hidden if logged out) "]

    Hope it helps.

    Best regards,
    Nikko

    in reply to: How do I change this current style of product images #1419536

    Hi pampself,

    I’m glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: How do I change this current style of product images #1419531

    Hi pampself,

    Please add this CSS code in Enfold > General Styling Quick CSS:

    #top .products .avia_cart_buttons {
        background-color: #524e63;
        opacity: 1;
        display: flex;
    }

    Best regards,
    Nikko

    in reply to: Unable to get megamenu working #1419221

    Hi wexoe,

    To assist you further, please provide us with your login credentials by following these steps:

    1. Install and activate the “Temporary Login Without Password” plugin. You can find it here.
    2. Once activated, navigate to “Users > Temporary Logins” in the left-side menu.
    3. Click on “Create New” to generate a temporary login.
    4. Enter the email address for the account (you can use (Email address hidden if logged out) ) and select the highest possible role. Set the expiry date to around four days to ensure enough time for debugging.
    5. Click “Submit” to create the temporary account.
    6. In the private section, provide us with the URL that allows us to access the temporary login and assist you.

    Please note that once your issue is resolved, you can remove the plugin. Alternatively, if you prefer not to use the plugin, you can manually create an admin user and share the login credentials in the “private data” field.

    If you have any further questions or concerns, please let us know.

    Best regards,
    Nikko

    in reply to: Featured Image Of Blog Post Getting Cropped #1419220

    Hi sarthakchoudhary,

    You will need to regenerate the images or re-upload it so the filter will run.

    Best regards,
    Nikko

    in reply to: How to create floating menu from existing one? #1419219

    Hi octopussolutions,

    I think what you made is the correct solution, to fix the border radius issue, please add this inside the media query:

    .html_header_top.html_header_transparency #header .header_bg {
        border-radius: 8px;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Tabbed Section Issue with Sidebar #1419217

    Hi ihf-eramstad,

    I apologize for the delayed response.
    You can disable the sidebar on that page, create a column and insert a Widget element.
    I tried to login but the default login page only returns 404 and the one in private content says Invalid username or password. Please try again.

    Best regards,
    Nikko

    in reply to: Featured Image Of Blog Post Getting Cropped #1418964

    Hi sarthakchoudhary,

    The image sizes used is 705 x 705px, so unless it’s a square image, some parts of the image would be lost, otherwise, the layout will break.
    You can change the size by adding this PHP snippet in your child theme’s functions.php file (or use plugin like WPCode to add PHP snippet):

    function enfold_customization_modify_thumb_size( $size ) {
      $size['masonry'] = array( 'width' => 705, 'height' => 705 , 'crop' => false );
      return $size;
    }
    
    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );

    Just adjust the values as you see fit.
    Hope it helps.

    Best regards,
    Nikko

    in reply to: Transparent header #1418963

    Hi Nathan,

    Thanks for contacting us!
    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
      .html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
        background-color: transparent !important;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: How to create floating menu from existing one? #1418962

    Hi octopussolutions,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (min-width:1080px) {
      .html_header_top.html_header_transparency #header {
        background-color: white;
        margin-top: 30px;
        max-width: 1080px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 8px;
        box-shadow: 0 0 20px rgba(0,0,0,0.05);
        overflow: hidden;
      }
    }

    This code only takes effect on desktops and laptops but not on tablets and mobile phones.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: preloader align centre mobile #1418957

    Hi Sascha,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
      #top .av-siteloader-inner {
        table-layout: fixed;
      }
    
      #top .av-siteloader-inner .av-preloading-logo {
        max-width: 100%;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: How do I change this current style of product images #1418956

    Hi pampself,

    For the background color of the canvas, please try to add this CSS code in Enfold > General Styling > Quick CSS: (just change the color value as you see fit)

    #top.home .container_wrap_first {
        background-color: white;
    }

    To reduce the height, please add this CSS code (and adjust the padding values)

    #top.home .container_wrap_first main.content {
        padding-top: 50px;
        padding-bottom: 20px;
    }

    Best regards,
    Nikko

    in reply to: links on headings #1418952

    Hi Munford,

    Can you try to use this CSS code instead (so it targets links inside headings):

    #top h2 a:hover {
        color: #ff6a00 !important;
    }

    Best regards,
    Nikko

    in reply to: Sub menu triangle color #1418951

    Hi stephaniebLOS,

    I can’t seem to find the triangle to the left of the text you mentioned, can you give us a screenshot?

    You can upload the screenshots in SavvyifyImgur, Dropbox or other online image sharing websites, then post the link here (or in private content).

    Best regards,
    Nikko

    in reply to: Non-fancy ampersand not italic #1418950

    Hi stephaniebLOS,

    Please try to use this CSS code:

    .special_amp { 
        color: inherit!important; 
        font-family: inherit; 
        font-size: inherit; 
        font-style: normal;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Tabbed Section Issue with Sidebar #1418948

    Hi ihf-eramstad,

    You can use Widget Area (under Content Elements) so you can place that widget properly.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Issue with dynamic_avia files #1418947

    Hi jedediahzilberberg,

    You’re welcome, we’re glad that we could help you :)

    Best regards,
    Nikko

Viewing 30 posts - 481 through 510 (of 25,536 total)