Forum Replies Created
-
AuthorPosts
-
Hey Ralf,
Thanks for your question and for the test page, please try adding this css to remove the white sidebars and to increase the height to 70vh, I assume that you want to see the footer, if not then adjust to 100vh:@media only screen and (max-width: 767px) { .responsive #top.page-id-139 #wrap_all #main #av_section_1 > .container { width: 100%; max-width: 100%; } .responsive #top.page-id-139 #wrap_all #main #av_section_1 > .container > .av-content-full { height: 70vh; } }Please see the screenshot in the Private Content area of the expected results.
Best regards,
MikeHey Chris,
Thanks for the link to your site, unfortunately color section background videos do not automatically play on mobile, and the overlay option adds “background repeat” to the image because it assumes that you are adding a small overlay image, using this option as a mask was not the intention.
I recommend using the Layerslider instead as it will play a background video on mobile (for now, note that the browsers are always changing to block this behavior) and you can add a “mask” layer.
Although you may need to create two layersliders, one for mobile and one for desktop, because depending on the situation landscape desktop slides don’t always change into portrait mobile view well.Best regards,
MikeJanuary 30, 2022 at 8:29 pm in reply to: Large White Gap Related to Pages with Full-width Easy Slider #1337924Hi,
Thanks for the feedback and the links & screenshots, so those 3 pages are using the color section in a different way, two of them contain videos, and one is text, none have background images and none should have the css you are working on for the /daily-word-all/ page, so the error here is that the css above is too general with the target of the css rule #av_section_1 is causing a conflict.
So try removing your previous css, add a custom class to your /daily-word-all/ page color section like: title-color-section

then this css:@media only screen and (max-width: 475px) { #top #main .title-color-section { background-size: cover !important; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; } }Now about this css, I removed the height because you already have the height set in the element to 600px, and you seem to want this height for mobile also, so there is no need to declare it again, if you want a different mobile height then go ahead and add it. You don’t need to add background-size: cover twice, this one is for mobile, if you always want this for desktop & mobile then use this css instead:
#top #main .title-color-section { background-size: cover !important; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; }you will note that I added #top #main this adds specificity to ensure it is not overwritten.
Best regards,
MikeHi,
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,
MikeJanuary 30, 2022 at 3:08 pm in reply to: a single specific character; different rendering in headings and text #1337911January 30, 2022 at 3:00 pm in reply to: Large White Gap Related to Pages with Full-width Easy Slider #1337909Hi,
Thanks for the feedback but could you explain further how several pages were negatively affected? Perhaps these pages had something else going on, or perhaps I’m not fully understanding what you are expecting on mobile, for the page we have been looking at /daily-word-all/ changing the height to 500px doesn’t look very different than 600px, please see the screenshot in the Private Content area. Can you include screenshots of what you are seeing?
As for mobile image sizes, please note that on mobile images are portrait and for desktop images are landscape, which is typically fine for the mobile image to be cropped some to show the full height, this is what background-size: cover does, another option is background-size: contain this forces the full width of the image to show, but the height will not fill the area so you would want to use a portrait sized image for mobile in this case, like 425px x 500px, or whatever size you wish.
One way to achieve this is to duplicate your element and choose your new portrait sized image for mobile and set the display options to show this element only on mobile while hiding the desktop element.
Another possibly for your comment it negatively effected several pages is that the css above is very general, the target of the css rule #av_section_1 is practically on every page and may not be one you want to target, I would recommend using a custom class for each one of these elements you really want to target, such as title-color-section and then adjust your css.Best regards,
MikeJanuary 29, 2022 at 11:20 pm in reply to: Large White Gap Related to Pages with Full-width Easy Slider #1337866Hi,
Sorry, I thought you didn’t want the color section to be as large as it is, if you do want the color section to take up most of the mobile screen then the css you have is working correctly. Please see the screenshot in the Private Content area.Best regards,
MikeJanuary 29, 2022 at 10:54 pm in reply to: add highlight or background behind the text of the footer image for visibility #1337865Hey pontedellarco,
Please include admin login in the Private Content area and a link to the page with this issue so we can be of more assistance.Best regards,
MikeHi,
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,
MikeHey ycoleman31,
Thank you for your patience, I didn’t find what was causing this error so I have submitted it to the Dev Team for review, but in the meantime I added this css to your Quick CSS to correct:#top a[aria-controls="av-tab-section-1-1"] .av-tab-arrow-container span { background-color: #e74480; } #top a[aria-controls="av-tab-section-1-2"] .av-tab-arrow-container span { background-color: #333333; } #top a[aria-controls="av-tab-section-1-3"] .av-tab-arrow-container span { background-color: #72cac8; }please clear your browser cache and check.
Best regards,
MikeJanuary 29, 2022 at 9:08 pm in reply to: Large White Gap Related to Pages with Full-width Easy Slider #1337855Hi,
It looks like you have the color section height set to 600px

so you can choose to use a percentage so the mobile screen will be less:

or use this css to set a specific size for mobile:@media only screen and (max-width: 767px) { #av_section_1 > div > .av-section-cont-open { height: 308px !important; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey Nat,
Thanks for your question I have not tested this but I have seen an Enfold site using WordPress File Upload, so I assume that it was working correctly. If you want to use this with a contact form then try using Contact Form 7 with Drag and Drop Multiple File UploadBest regards,
MikeHey 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>Best regards,
MikeHi,
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,
MikeHi,
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,
MikeJanuary 29, 2022 at 6:35 pm in reply to: Trying to create a link to a form with pre-selected fields based on from page #1337842Hey 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%20Postthe url parameter:?size=2%20Car%204%20Post
needs to match your option text for the correct option to be selected

the spaces need to be replaced with&20

If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.Best regards,
MikeJanuary 29, 2022 at 4:42 pm in reply to: add to card button : remove div.quantity and enlarge p.price #1337840Hi,
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

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:

After applying the css, please clear your browser cache and check.Best regards,
MikeJanuary 29, 2022 at 2:37 pm in reply to: "Layout Settings Menu" Not showing on backend when editing pages #1337834January 28, 2022 at 1:50 pm in reply to: a single specific character; different rendering in headings and text #1337718Hey 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

once we examine we will know better if it is a font issue or not, since he non-braking space is changing the “&” perhaps another option is to use & instead

Character Entity Reference ChartBest regards,
MikeJanuary 28, 2022 at 1:17 pm in reply to: "Layout Settings Menu" Not showing on backend when editing pages #1337712Hi,
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,
MikeHi,
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,
MikeHi,
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>
The button links should be#form-popup-one&#form-popup-two

and the button custom class should beform-popup

this results like this:

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:

like this:

the result:

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,
MikeHi,
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,
MikeHey 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,
MikeHi,
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:

Best regards,
MikeHi,
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,
MikeJanuary 24, 2022 at 1:24 pm in reply to: Placing language switcher (via wpml) next to mobile burger menu icon #1336896Hi,
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 -
AuthorPosts







