Forum Replies Created

Viewing 30 posts - 12,601 through 12,630 (of 34,552 total)
  • Author
    Posts
  • in reply to: Increase animation duration for animated numbers #1337852

    Hey neobiz2,
    Thank you for your question, but unfortunately, it’s not possible to control the speed of the requestAnimationFrame function which is responsible for the animation without creating a custom script.
    You could try a plugin, or based on this article: Animating Number Counters you could try adding this code to a code block element:

    <style>
    @property --num {
      syntax: "<integer>";
      initial-value: 0;
      inherits: false;
    }
    div.slow-numbers {
      animation: counter 20s alternate ease-in-out;
      animation-fill-mode: forwards;
      counter-reset: num var(--num);
      font: 800 40px system-ui;
      padding: 2rem;
    }
    
    div.slow-numbers::after {
      content: counter(num);
    }
    
    @keyframes counter {
      from {
        --num: 0;
      }
      to {
        --num: 100;
      }
    }
    </style>
    <div class="slow-numbers"></div>

    2022-01-29_007.jpg
    the expected results:
    2022-01-29_008.jpg

    Best regards,
    Mike

    in reply to: Notification bar & header settings #1337848

    Hi,
    Please try this code in your functions.php instead:

    function custom_top_banner() { ?>
        <script>
    (function($){
        $( "<div id='banner'>This is a banner</div>" ).insertBefore( "#header_meta" );
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_top_banner');

    and this css instead:

    .responsive #top #header > #banner {
        width: 100%;
        height: 30px;
        background: #ffff00;
        color: #000;
        text-align: center;
        z-index: 1;
        position: relative;
    }
    .html_header_top.html_header_topbar_active.html_header_sticky #top #main > .title_container {
        padding-top: 30px;
    }

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

    Best regards,
    Mike

    in reply to: Google fonts stopped working #1337843

    Hi,
    Glad Ismael could 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

    Hey Joseph,
    Thank you for your question and the link to your pages, please give this a try, on your page with the form add a code block element at the bottom with this javascript:

    
    <script>
    var getUrlParameter = function getUrlParameter(sParam) {
        var sPageURL = decodeURIComponent(window.location.search.substring(1)),
            sURLVariables = sPageURL.split('&'),
            sParameterName,
            i;
        for (i = 0; i < sURLVariables.length; i++) {
            sParameterName = sURLVariables[i].split('=');
            if (sParameterName[0] === sParam) {
                return sParameterName[1] === undefined ? true : sParameterName[1];
            }
        }
    };
    
    var carportSize = getUrlParameter('size');
    
    if (carportSize != null) {
    	var val = carportSize;
         var sel = document.getElementById('avia_6_1');
          var opts = sel.options;
      for (var opt, j = 0; opt = opts[j]; j++) {
        if (opt.value == val) {
          sel.selectedIndex = j;
          break;
        }
      }
    }
    </script>
    

    Then on your page with the button make your link like this: your-site.com/form-page/?size=2%20Car%204%20Post the url parameter: ?size=2%20Car%204%20Post
    needs to match your option text for the correct option to be selected
    2022-01-29_005.jpg
    the spaces need to be replaced with &20
    2022-01-29_006.jpg
    If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    Hi,
    Thank you for the link to your page and the screenshots, when I check your page I see this, so it seems that the hiding of the quantity section is working
    2022-01-29_003.jpg
    please try this css instead:

    #top.single-product .price span.woocommerce-Price-amount,
    #top.single-product .price span.woocommerce-Price-currencySymbol{ 
         font-size: 20px;
    }
    #top.single-product .quantity { 
        display: none; 
    }
    #top.single-product .av-woo-purchase-button .cart {
    	float: none;
        display: inline-flex;
        margin-bottom: 0;
    }
    #top.single-product .first-payment-date {
    	margin: 0;
    }

    the expected results:
    2022-01-29_004.jpg
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    In your Quick CSS the greater than symbol was not correct, typically this occurs when the code is copied from an email instead of the forum.
    2022-01-29_073219.jpg
    I corrected from you, please clear your browser cache and check.

    Best regards,
    Mike

    Hey steridhh,
    Thank you for the screenshots, please link to a test page with both “&” showing so we can examine.
    This looks like this “&” on this demo created by the “great vibes” font
    2022-01-28_001.jpg
    once we examine we will know better if it is a font issue or not, since he non-braking space &nbsp; is changing the “&” perhaps another option is to use &amp; instead
    2022-01-28_002.jpg
    Character Entity Reference Chart

    Best regards,
    Mike

    Hi,
    For all of the pages built like this, try this css instead:

    .js_active #top #main > #av_section_1.av-minimum-height .container {
        opacity: 1;
        -webkit-transition: opacity 0s ease-in;
        transition: opacity 0s ease-in
    }

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

    Best regards,
    Mike

    in reply to: Popup window #1337710

    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: Popup window #1337540

    Hi,
    Thank you for the test page, for two buttons opening two popups on the same page the code block should contain this:

    <script type="text/javascript">
    jQuery(window).load(function(){
    jQuery('.avia-button-wrap.form-popup a.avia-button').addClass('form-popup-link');
      jQuery('.form-popup-link').magnificPopup({
        type:'inline',
        midClick: true
      });
    });
    </script>
    <style>
    .form-popup {
      position: relative;
      background: #FFF;
      padding: 20px;
      width: auto;
      max-width: 500px;
      margin: 20px auto;
    }
    </style>
    
    
    <div id="form-popup-one" class="form-popup mfp-hide">
    form one
    </div>
    
    <div id="form-popup-two" class="form-popup mfp-hide">
    form two
    </div>

    2022-01-27_001.jpg
    The button links should be #form-popup-one & #form-popup-two
    2022-01-27_002.jpg
    and the button custom class should be form-popup
    2022-01-27_003.jpg
    this results like this:
    2022-01-27_004.jpg
    Now to add your forms you will create your forms with the shortcode wand in a Classic Editor post so you can copy the shortcode and paste it in the code block:
    2022-01-27_005.jpg
    like this:
    2022-01-27_006.jpg
    the result:
    2022-01-27_007.jpg
    I made these changes to your page please clear your browser cache and check.


    @mistermagoo8691
    thanks for your feedback, I will check & correct it.

    Best regards,
    Mike

    in reply to: Help Desk Plugins #1337295

    Hi,
    Thank you for the login, please note that when you set the H tag color in the Advanced Styling theme option it typically overwrites the element options, so to correct I adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field

    #top #wrap_all #homepage-slider.main_color h2.avia-caption-title {
    	color: #fff;
    }

    Your slider title is now white, please clear your browser cache and check.

    In the future please open a new thread for each issue, this helps other users find solutions based on the opening subject line quicker, your post to this thread was off-topic from 2016, thank you for your understanding

    Best regards,
    Mike

    in reply to: Popup window #1337292

    Hey Brolle,
    Thank you for your question we don’t have a built-in popup element but we do have this solution to create a popup with a code block element. We can help adjust this to show your form, but we will need further information, such as what will trigger the popup a link or button? What kind of form is it, a contact form element or the shortcode from another plugin?
    If you want to use a plugin rather than building this, WP Popups is a free plugin that seems to work well with Enfold.
    If you don’t want to use a plugin, then try creating a test page and include admin login in the Private Content area below so we can help further.

    Best regards,
    Mike

    in reply to: Logo + Menu #1337066

    Hi,
    When I check your menu item Alle Kategorien I see the burger icon, try clearing your browser cache.
    To apply the above css to the button try this css:

    #header_main #menu-item-19902.av-menu-button > a > span.avia-menu-text {
    	border: 2px solid grey;
        border-radius: 10px;
        padding-left: 30px;
        padding-right: 30px;
        font-size: 15px;
    }

    screenshot of the expected results:
    2022-01-25_001.jpg

    Best regards,
    Mike

    in reply to: Button too big in blog page #1336899

    Hi,
    I see that you have removed the font-size css, but the letter-spacing css remains, since you can not find it please include an admin login so we can help you.

    Best regards,
    Mike

    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: show avia elements for editors possible? #1336790

    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: Burger menu not working #1336787

    Hey ac1977,
    Please try disabling your Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and then at the bottom of the same page enable the Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files
    Then ensure Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer is not enabled, and clear your browser cache and check again.
    If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: underline links #1336785

    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: do not collapse columns #1336784

    Hey laptophobo,
    Please try this css:

    @media only screen and (max-width: 767px) {
    .responsive #top.page-id-1642 #wrap_all #after_section_1 .sc-av_one_fourth .av_one_fourth {
        width: 47%;
        float: left;
        margin-right: 3%;
    }
    .responsive #top.page-id-1642 #wrap_all #after_section_1 .sc-av_one_fourth .av_one_fourth.first {
        clear: none;
    }
    .responsive #top.page-id-1642 #wrap_all #after_section_1 .sc-av_one_fourth .av_one_fourth.avia-builder-el-9,
    .responsive #top.page-id-1642 #wrap_all #after_section_1 .sc-av_one_fourth .av_one_fourth.avia-builder-el-25,
    .responsive #top.page-id-1642 #wrap_all #after_section_1 .sc-av_one_fourth .av_one_fourth.avia-builder-el-33 {
        clear: both;
    }
    }

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

    Best regards,
    Mike

    in reply to: Can't get Enfold installed #1336780

    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: underline links #1336778

    Hi,
    Please try this instead:

    #main a:not(.avia-button), #footer a:not(.avia-button) {
        text-decoration: underline;
    }

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

    Best regards,
    Mike

    in reply to: Stick title + breadcrumb? #1336777

    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: Button too big in blog page #1336774

    Hey rixi,
    Thank you for the link to your site, I see that the font size of the button is 24px due to this custom css:

    .avia-button span {
        font-size: 24px !important;
    }

    if you remove this the font size will go back to 13px and you button will be smaller.
    The letter spacing is due to this custom css:

    #top #wrap_all .avia-slideshow-button,#top .avia-button,.html_elegant-blog .more-link,.avia-slideshow-arrows a:before {
        padding-top: 20px;
        padding-bottom: 20px;
        letter-spacing: 0.36em
    }

    try removing #top .avia-button from the css, if there is a certain button you wanted to target with this css let us know and we can help correct your css.
    If you can’t find were to make these edits, include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: underline links #1336773

    Hey prerules,
    Thank you for your question, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #main a, #footer a {
        text-decoration: underline;
    }

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

    Best regards,
    Mike

    in reply to: Stick title + breadcrumb? #1336772

    Hi,
    Thank you for the link to your site, please try this css instead:

    #top.single-portfolio .title_container {
    position: fixed;
    top: 82px;
    z-index: 1000;
    width: 100%;
    }
    #top.single-portfolio #sub_menu1 {
    top: 142px !important;
    }

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

    Best regards,
    Mike

    Hi,
    Changing the font of the button text also changing the size of the button, so for two different button sizes you could try this:

    @media only screen and (max-width: 767px) { 
    #top #main .avia-slideshow-button {
    	font-size: 12px;
    }
    }
    @media only screen and (min-width: 768px) { 
    #top #main .avia-slideshow-button {
    	font-size: 20px;
    }
    }

    To have the button closer to the image in the caption H2, try this css:

    @media only screen and (max-width: 479px) {
    .responsive #top #main .slideshow_caption h2 {
        font-size: 0px !important;
        line-height: 0px;
        margin-bottom: 0px;
    }
    .responsive #top #main .slideshow_align_caption br {
    	display: none;
    }
    #top #main .avia-slideshow-button {
    	margin-top: 0px;
    }
    }

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

    Best regards,
    Mike

    in reply to: Optimising Masonry Gallery #1336760

    Hi,
    Thank you for your patience, you had an error because you had the option Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer set, I disabled this setting and now the script works correctly.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: mobile view below 1024px #1336758

    Hi,
    You could try this css but you’ll want to examine each page to ensure there are no conflicts

    @media only screen and (max-width: 1023px) { 
    	#top .flex_column_table,
    	#top .flex_column_table_cell {
        display: block;
        width: 100%;
        margin-left: 0;
    	}
    }

    Best regards,
    Mike

    in reply to: Stick title + breadcrumb? #1336757

    Hi,
    Please link to your page so we can examine.

    Best regards,
    Mike

    in reply to: 'Hide on Mobile Devices' extend to tablet portrait size #1336752

    Hi,
    Glad Rikard could 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

Viewing 30 posts - 12,601 through 12,630 (of 34,552 total)