Forum Replies Created
-
AuthorPosts
-
June 19, 2022 at 10:10 pm in reply to: How to add margins (or padding) on the left and right sides of the content only #1355786
Hi,
Thank you for your patience, is this how you wanted it?

Please try this css in the WordPress ▸ Customize ▸ Additional CSS field:.responsive #main .container, #main .avia-section { max-width: 917px; width: 917px; margin: auto; float: none; } #main .container_wrap { border-top-style: none; }After applying the css, please clear your browser cache and check.
Best regards,
MikeJune 19, 2022 at 9:18 pm in reply to: Enfold 5.0 – Layerslider Background Video Safari Browser #1355780Hi,
Thanks for the feedback, I updated my Mac to Safari 15.5 and Monterey 12.4 and tested on desktop and in responsive design mode for iPad & iPhone, but could not reproduce.
I don’t have an actual iPad iPhone, but I tested on my Android phone in Chrome and could not reproduce.
I’m not sure why you are seeing this, try clearing your browser cache.
Please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.Best regards,
MikeJune 19, 2022 at 8:50 pm in reply to: Font-size in search result list pages, editing of search-result pages, e #1355777Hi,
Thanks for the links to your importetd post & new post design, with the following css I was able to achieve this result:

Please try this code in the General Styling ▸ Quick CSS field:#top.single-post .template-single-blog .entry-footer, #top.single-post .template-single-blog .related_posts, #top.single-post .template-single-blog .comment-entry, #top.single-post .template-single-blog .post-meta-infos{ display: none; } #top.single-post .template-single-blog .entry-content-wrapper { padding-left: 10px; } #top.single-post .template-single-blog .entry-content-wrapper > .entry-content { box-shadow: 0 0 10px 0 rgb(0 0 0 / 23%); padding: 2%; font-family: glacial-indifference; font-size: 14pt; } #top.single-post .template-single-blog .post-title { text-transform: uppercase; letter-spacing: 1px; font-weight: 300; color: #222222; font-size: 28px; line-height: 1.1em; text-align: center; } #top.single-post .template-single-blog .post-title:after { content: url(https://parkinson-journal.de/wp-content/uploads/2022/06/Blueline-with-red-icon.jpg); display: inline-block; margin-top: 30px; } #top.single-post .container_wrap_first:before { content: url(https://parkinson-journal.de/wp-content/uploads/2022/05/Headpic.png); }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,
MikeJune 19, 2022 at 7:38 pm in reply to: How to delete underline from links from News in sidebar #1355772Hi,
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,
MikeJune 19, 2022 at 3:03 pm in reply to: How to delete underline from links from News in sidebar #1355765Hey rixi,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#top #main a.news-link { text-decoration: none; } #top #socket a { text-decoration: none; } #top #main .news-headline { font-size: 20px; }Feel free to adjust the font size to suit.
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,
MikeHey rixi,
Thanks for the link to your page, blog post created with the WordPress Classic or Block Editors automatically have the comment form added to the bottom, if you don’t want this you can use a plugin like Disable Comments RB to disable them, or you can add this css to your Quick CSS to hide them:#top.single-post .comment-entry.post-entry { display: none; }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,
It looks like you accidentally converted the pages to the WordPress Block Editor instead of the Enfold Advanced Layout Builder, I corrected it for you please 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,
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 link to your site, try adding this code to the end of your functions.php file in Appearance ▸ Editor:function custom_limit_words_script() { ?> <script> (function($){ $('#top.post-type-archive-product .template-shop .products.columns-3 .product .inner_product').contents().filter(function() { return this.nodeType == 3 }).each(function(){ var length=30 this.textContent = this.textContent.split(" ",length).join(" "); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_limit_words_script');feel free to adjust the word length to suit, currently it is 30.
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 link to your site, I see that you are using Equal Height columns, when you do the inner columns are wrapped in a flex_column_table and a av-flex-placeholder is added between the columns.
If you use Individual Height columns your width issue would be corrected, but I assume that you wish to continue using Equal Height columns, so try changing the color section ID to eh-center-align-columns for Equal Height columns, and ih-center-align-columns for Individual Height columns.
Then use this css:#ih-center-align-columns .entry-content-wrapper, #eh-center-align-columns .entry-content-wrapper .flex_column_table { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; justify-content: center; } #eh-center-align-columns .av-flex-placeholder { display: none; }After applying the css, please clear your browser cache and check.
expected results:

Best regards,
MikeHey HulaSlim,
Thank you for your patience, I added this css for you:#main .container_wrap { border-top-style: none; border-top-width: 0; }Please clear your browser cache and check.
Best regards,
MikeHi,
Thanks for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:.av-catalogue-price.av-cart-update-price > ins > .woocommerce-Price-amount { position: absolute; top: 30px; left: 0; } #top #wrap_all .av-catalogue-price.av-cart-update-price > ins:before { display: none; } .av-catalogue-price.av-cart-update-price > ins > .woocommerce-Price-amount .woocommerce-Price-currencySymbol:before { content: "\2219"; text-decoration: none; display: inline-block; padding: 0 4px 0 3px; font-size: 20px; line-height: 12px; }After applying the css, please clear your browser cache and check.
If you don’t want the star before the sale price the use this instead:
.av-catalogue-price.av-cart-update-price > ins > .woocommerce-Price-amount { position: absolute; top: 30px; left: 0; } #top #wrap_all .av-catalogue-price.av-cart-update-price > ins:before { display: none; }Best regards,
MikeJune 18, 2022 at 9:27 pm in reply to: Color section video background not staying constrained #1355716Hey Christie,
Thanks for the link to your site, I tried to create a copy of it on a multisite network but couldn’t reproduce your error, please see the link below.
Check to see if you have disabled Self Hosted Videos or any elements.Best regards,
MikeHi,
The Dev Team has replied that at the moment this is not integrated in Enfold, but has been added as a feature issue to our dev repo.
Thank you for your patience.Best regards,
MikeHi,
The Dev Team has replied that at the moment not integrated in Enfold, but has been added as a feature issue to our dev repo.
Thank you for your patience.Best regards,
MikeHi,
Thank you for your patience, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:.avia_transform .av-animated-generic { opacity: 0; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thank you for your patience and for the screenshots, I don’t have an iPhone but by examing with Chrome DevTools at 320px screen width, which is the typically small iPhone width I found that the x-large buttons have a min-width of 320px and the page has a max-width of 85%

But once you look at the larger screen phones like 425px this issue doesn’t show.
I recommend this css to correct for the smaller phones:@media only screen and (max-width: 430px) { .avia-button.avia-size-x-large { min-width: 100% !important; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Sorry, we don’t have a timeframe for added features, the Dev Team is working on a lot of features right now, so we will need to wait and see, thank you for your patience and understanding.Best regards,
MikeHi,
Thank you for your patience, yes the code goes in your child theme functions.php, you placed it in the correct place.
Your page /monuments-historiques/ doesn’t seem to exist anymore so I checked /moutier-grandval/ and found that the script was looking for a specific element ID, I adjusted it to look for the general ID full_slider_1 and it is now working on that page and should work on all of your pages, if you find one that it is not working on please link to it so we can examine.For future users the working script is now:
function add_scrolldown_link() { ?> <script> var slider = document.getElementById("full_slider_1"); console.log(slider); if (slider) { var anchor = document.createElement("a"); anchor.href="#next-section"; anchor.classList.add('scroll-down-link'); anchor.classList.add('av-control-default'); anchor.setAttribute("aria-hidden", "true"); anchor.setAttribute("data-av_icon", ""); anchor.setAttribute("data-av_iconfont", "entypo-fontello"); console.log(anchor); slider.appendChild(anchor); } </script> <?php } add_action('wp_footer', 'add_scrolldown_link');Best regards,
Mike -
AuthorPosts



