Forum Replies Created

Viewing 30 posts - 961 through 990 (of 33,332 total)
  • Author
    Posts
  • in reply to: Video muted on autoplay #1460676

    Hi,
    No, it doesn’t matter where the videos are hosted, the browsers do not allow auto play with sound.

    Best regards,
    Mike

    in reply to: Video muted on autoplay #1460673

    Hey Stefan,
    Unfortunately you can not have a video that auto plays with sound, the browsers will not allow this, it is a requirement of the browsers for many years now to reduce video spam.

    Best regards,
    Mike

    in reply to: How to add a second title to the footer? #1460672

    Hi,
    use this code in your functions.php instead:

    function custom_script() { ?>
      <script>
    document.addEventListener("DOMContentLoaded", function() {
        var titleText = document.querySelector(".subtext.avia-standard-logo-sub").textContent;
        var footerTitleDiv = document.createElement("div");
        footerTitleDiv.id = "footer-title";
        footerTitleDiv.textContent = titleText;
        document.getElementById("socket").appendChild(footerTitleDiv);
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Best regards,
    Mike

    in reply to: How can i add a row with text above an image? #1460671

    Hi,
    I assume you mean the “SELF CONTAINED” at the top of the page, you can use this css:

    #top #wrap_all .all_colors h1 {
    	font-weight: bold;
    }

    but your font doesn’t seem to support “bolder”

    Best regards,
    Mike

    Hi,
    #1: has an extra divs around the text that none of the other do, I assume this is an error, check your code in the text block in the “text” tab in instead of “visual”
    Enfold Support 6247
    all of the other ones are two H2 tags like this:
    Enfold Support 6249
    #2: this is a div column like all of the others, only it has no text block in it, I assume you will be adding one?
    If not use this css instead to exclude it:

    #top.page-id-502 #av_section_1 .flex_column.av_one_half:not(.avia-builder-el-9) {
    	border: 1px solid #cccccc;
    }

    Best regards,
    Mike

    Hi,
    It looks like in your custom enfold_child_en.css the H tag line-heights are set to 5em
    Enfold Support 6245
    On the German pages the standard line-height: 1.1em; is used with no custom css used.

    Best regards,
    Mike

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

    #top.page-id-502 #av_section_1 .flex_column.av_one_half {
    	border: 2px solid;
    }
    #top.page-id-502 #av_section_1 .flex_column.av_one_half h2:nth-child(2) {
    padding-right: 20px;
    }

    you may need to adjust the image in the middle one, it is adding white space, perhaps the image is not wide enough? All of the other images look good.

    Best regards,
    Mike

    in reply to: How to move title to left and menue to right #1460651

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

    .responsive #header_main .container {
    	max-width: 100%;
    }

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

    Best regards,
    Mike

    in reply to: How to hide the autoscrolling arrow? #1460649

    Hey Jak73,
    Edit your color section and disable the Scroll Down Arrow
    Enfold Support 6243

    Best regards,
    Mike

    in reply to: Real Estate Pro plugin compatibility with Enfold #1460648

    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: How can i add a row with text above an image? #1460647

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

    .avia-image-container.blue-info .av-image-caption-overlay-center {
        color: #222222;
    }

    Best regards,
    Mike

    in reply to: How to add a second title to the footer? #1460646

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

    #footer-title {
    font-size: 38px;
    font-weight: bold;
    font-family: arial;
    color: #222;
    float: right;
    top: -38px;
    position: relative;
    left: -10%;
    }

    Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    document.addEventListener("DOMContentLoaded", function() {
        var titleText = document.querySelector("h1.av-special-heading-tag").textContent;
        var footerTitleDiv = document.createElement("div");
        footerTitleDiv.id = "footer-title";
        footerTitleDiv.textContent = titleText;
        document.getElementById("socket").appendChild(footerTitleDiv);
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    This is the expected result:
    Enfold Support 6241

    Best regards,
    Mike

    in reply to: How can i add a row with text above an image? #1460642

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

    .blue-info .av-image-caption-overlay {
        border-top: 0px;
        border-bottom: 0px;
    }
    #top .blue-info .avia-image-overlay-wrap .av-caption-image-overlay-bg {
      opacity: 1 !important;
      background-color: #c8ebf8 !important;
    }

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

    Best regards,
    Mike

    in reply to: Change font-size of text menu #1460639

    Hi,
    Do you have this sorted out now, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Real Estate Pro plugin compatibility with Enfold #1460638

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

    add_filter( 'avf_enqueue_wp_mediaelement', 'avia_always_load_mediaelement', 10, 2);
    function avia_always_load_mediaelement($condition, $options)
    {
    	$condition = true;
    	return $condition;
    }

    Best regards,
    Mike

    Hi,
    Seems to work when I try:
    Enfold Support 6235
    see the link below. But see Guenni007 post about using Transfonter here where he points out that the Font Kit Generator from FontSquirrel does not support the font family option.

    Best regards,
    Mike

    Hi,
    There is no link to polyfill.io in the theme, the theme only uses wp-polyfill, that is the built-in WordPress polyfill file at /wp-includes/js/dist/vendor, so even if the theme didn’t have this reference the WordPress core still does, so I believe this will still be an issue until WordPress removes it.
    You can see the open issue here, it is open to the public.

    Best regards,
    Mike

    in reply to: Postslider javascript #1460628

    Hi,

    When switching to enfold als current theme (instead of the child) it is not happening, simply because the postslider is not sliding at that point. It just shows the items (correct).

    I’m not understanding what you mean, your postslider looks the same as our demo, have you customized the element somehow? Perhaps this is the issue?

    Best regards,
    Mike

    in reply to: Main photo rotate with same look as now #1460625

    Hi,
    Typically you would drag the elements into the LayerSlider where you want to see them, try checking the free LayerSlider templates for one similar to what you want to achieve:
    LayerSlider template free sliders
    Also note that typically you will need to create two sliders, one for desktop and one for mobile because the desktop screen is landscape and the mobile screen is portrait.

    Best regards,
    Mike

    in reply to: Masonry layout #1460622

    Hi,
    When I test the script it seems to work, perhaps you made an error when you added it to your functions.php file, often the the symbols are converted, try again and if you have further trouble include a admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: Vertical align of images in portfolio grid #1460440

    Hi,
    Thanks for sharing Guenni007

    Best regards,
    Mike

    in reply to: Postslider javascript #1460439

    Hi,
    Thanks Guenni007, Deef, try disabling your plugins and if this doesn’t help try enabling the parent theme to see if there is something in your child theme causing this. Also it looks like you are still using v5.5, above you said that you updated but we are using v5.7.1 now.
    If none of this helps include a admin login in the Private Content area so we can examine closer.

    Best regards,
    Mike

    in reply to: Updated to the Latest Enfold and Menu is Not Working #1460434

    Hey A-Wise,
    When I compare the two sites I don’t see any differences, perhaps you have already solved this?

    Best regards,
    Mike

    Hi,
    I have reported this issue here feel free to review it and add any comments and subscribe to it to follow as the Dev Team reviews it.

    Best regards,
    Mike

    Hi,
    Thanks for sharing manurimini
    The theme doesn’t include polyfill or link to a external one, but uses the registered WordPress version with the relative path of /wp-includes/js/dist/vendor note that this path is in the WordPress files.

    Best regards,
    Mike

    in reply to: change logo on one page #1460396

    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: Optimal Display of posts in an orderly way #1460395

    Hey oliverb71,
    It looks like most of your post images are the same size that then show in a ordinary way, but some of your images are much smaller because they are only logos. It also looks like you don’t show any of these featured images on the post page, but are only used for the thumbnails.
    So I recommend ensuring that all of your featured image thumbnails are the same size, try imageresizer.com it is a free tool to crop your images.
    If you use different sizes WordPress will use the closest thumbnail size, but it may not always be the same size, this is why it would be better if you manually ensure they are all the same size.

    Best regards,
    Mike

    in reply to: Text for next post #1460381

    Hi,
    I checked all of the posts on the blog page that you linked to, only the first post doesn’t show the “next” post navigation, this is expected since it is your latest post, thus there is only a “previous” post. All other posts show both “next” and “previous” post navigations

    Best regards,
    Mike

    in reply to: Desktop and Mobile view category photos #1460368

    Hi,
    To add a border radius to the images in #bc-custom-section for bothe desktop and mobile, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #bc-custom-section div .flex_column a.avia_image {
    	border-radius: 30px;
    }
    

    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

    in reply to: Large space gap after removing #1460360

    Hey bemodesign,
    It is not clear what code you added, perhaps you added this:

    #top.single-product .product_meta {
        visibility: hidden;
    }

    but you should have used:

    #top.single-product .product_meta {
    display: none;
    }
    #top div.product .woocommerce-tabs {
        padding: 0;
    }

    I added this for you, please check.

    Best regards,
    Mike

Viewing 30 posts - 961 through 990 (of 33,332 total)