Forum Replies Created
-
AuthorPosts
-
Hey lauragrashoff,
Entschuldigen Sie die späte Antwort und danke für das Testskript. Ich habe den Code in ein Codeblockelement auf einer Seite auf dem lokalen Host eingefügt und festgestellt, dass das Auffüllen der Seite das Problem verursacht hat. Dies hat es für mich gelöst:#main > .container_wrap_first > div { padding: 0 !important; }Aber ich würde Ihre Seiten-ID zu diesem CSS hinzufügen, damit andere Seiten davon nicht betroffen sind.
— Translated with Google —
Sorry for the late reply and thanks for the test script, I placed the code in a code block element on a page on the localhost and found that the page padding caused the issue, this solved it for me:
#main > .container_wrap_first > div { padding: 0 !important; }but I would add your page ID to this css so it doesn’t affect other pages.
Best regards,
MikeNovember 29, 2020 at 2:20 am in reply to: Opacity of transparent header font and logo same as background with css #1263719Hi,
Thanks, please remove the opacity and change the background color like this:#header.av_header_transparency { background: rgba(0, 0, 0, .7); }After applying the css, please clear your browser cache and check.
Best regards,
MikeNovember 29, 2020 at 1:59 am in reply to: logo partner element – controlling width of hover box & content on diff lines #1263717Hey sensiblekaren,
Sorry for the late reply, do you mean that you are trying to use the “Image Caption” of each partner to show two lines?

On my localhost I was able to create two lines with this css:.avia-tooltip.avia-tt .inner_tooltip { display: table-caption; text-align: left; }what this does is create a new line after each word, so for the name as the first line I used a non-breaking space like this
Miss One CEO


Please note that WordPress will try to strip the non-breaking space each time you edit the element. Unfortunately this element is only meant to show the tooltip as one line.Best regards,
MikeHi,
Sorry for the very late reply and thanks for the link to your test page.
Instead of editing the theme javascript files, try adding this code to the end of your functions.php file in Appearance > Editor:function custom_script() { ?> <script> (function($){ $(document).ready(function(){ $('.toggler').bind('mouseover', function(){ $(this).trigger('click'); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');this will work on your whole site, let us know if you want it to only work on one page.
Best regards,
MikeNovember 28, 2020 at 11:43 pm in reply to: Opacity of transparent header font and logo same as background with css #1263713Hi,
Thanks for sharing your solution, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeHey Blatze,
Sorry for the late very reply, I rewrote this script a little and added a “span” around each content “block”. I created a test page on your site so you could examine a working example, please see the link in the Private Content area.
This is the HTML I used in a code block element on the test page:<span class="learn-more">Opening content <a class="click-learn-more" href="#">Learn more…</a> <span class="learn-this">Toggled content</span> </span>I then cloned the code block 6 times.
This is the function I added to your functions.php, I also disabled your other function and css.function custom_toggle_script() { ?> <script> (function($){ $(document).ready(function(){ $('.learn-this').hide(); $('.click-learn-more').click(function(e){ e.preventDefault(); var $this = $(this).parent().find('.learn-this'); $(".learn-this").not($this).hide(); $this.toggle(); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_toggle_script');now on the test page only one toggle will be open at a time.
Best regards,
MikeNovember 28, 2020 at 5:55 pm in reply to: Problem with table: Height of "Label Column" does not grow with other columns #1263689Hey Marcel,
Sorry for the late reply and thanks for the link to your page.
Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_script() { ?> <script> (function($) { $(document).ready(function(){ var width = $(window).width(); if ( width >= 767) { $('#pakete .avia-pricing-table-container .pricing-table-wrap:nth-child(2) li').each(function(index){ $('#pakete .avia-pricing-table-container .pricing-table-wrap:nth-child(1)').find('li').eq(index).css('height', $(this).css('height')); }); $('#pakete .avia-pricing-table-container .pricing-table-wrap li:nth-child(9)').css({ 'height': '91px' }); $('#pakete .avia-pricing-table-container .pricing-table-wrap li:nth-child(13)').css({ 'height': '66px' }); $('#pakete .avia-pricing-table-container .pricing-table-wrap li:nth-child(20)').css({ 'height': '88px' }); $('#pakete .avia-pricing-table-container .pricing-table-wrap li:nth-child(25)').css({ 'height': '66px' }); }; }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');Then clear your browser cache and check.
Best regards,
MikeNovember 28, 2020 at 2:48 pm in reply to: Opacity of transparent header font and logo same as background with css #1263680Hey webWahine,
Sorry for the late reply and thanks for the login. Instead of applying opacity, try making the background color transparent like this:#header.av_header_transparency { background: transparent; }If you would like the main menu text to be a different color before scroll, and then use the theme colors after scroll, please try this css:
.av_header_transparency #avia-menu > li > a { color: #FFEB3B; }Please adjust color to suit and then clear your browser cache and any cache plugin, and check.
Best regards,
MikeNovember 28, 2020 at 12:59 pm in reply to: Accessibility Tweak On Easy Slider (Possibly other elements) #1263671Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
I see that you have a Mega Menu under “Produkte”, but what do you want to do to it?Best regards,
MikeNovember 27, 2020 at 1:17 pm in reply to: Accessibility Tweak On Easy Slider (Possibly other elements) #1263510Hi,
The dev team writes that we will be adding ” tabindex=’-1′ ” to the arrows in v4.8, this removes the warning.
I’m not exactly sure when this will be, but I imagine it will be soon.Best regards,
MikeHi,
Glad to hear, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeHi,
Perhaps this solution will work for you instead.
If not then can you include a admin login in the private content area so we can investigate further.Best regards,
MikeHi,
I’m not sure what ‘screaming frog’ is, but this script works in the DOM, the actual HTML doesn’t contain the change, so is your analysis after the DOM or before?
When I check it is working, please see the screenshot in Private Content area.Best regards,
MikeHi,
Your test page doesn’t seem to be the same so I looked at the “UNSERE PRODUKTBEREICHE” section on your homepage,
try this css:.iconbox:hover a.iconbox_icon { color: #008eca !important; } .iconbox:hover .iconbox_content_title { color: #008eca !important; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thank you, this is because on IOS fixed background doesn’t work properly when its background-size is set to cover.
So what we can try is to change the background-size to “contain” instead of “cover”.
Please try this code in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 767px) { #av_section_2 .av-parallax { background-size: contain !important; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Please try this css:#top.page-id-11963 a.iconbox_icon:hover { box-shadow: 0 0 0 rgba(255,0,0, 0.4); animation: pulse 2s infinite; z-index: 999 !important; position: relative; } @-webkit-keyframes pulse { 0% { -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4); } 70% { -webkit-box-shadow: 0 0 0 100px rgba(255,255,255, 0); } 100% { -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0); } } @keyframes pulse { 0% { -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4); box-shadow: 0 0 0 0 rgba(255,255,255, 0.4); } 70% { -moz-box-shadow: 0 0 0 100px rgba(255,255,255, 0); box-shadow: 0 0 0 100px rgba(255,255,255, 0); } 100% { -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0); box-shadow: 0 0 0 0 rgba(255,255,255, 0); } }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
To manually update you would delete the theme directory via FTP at /wp-content/themes/angular/ and then upload the new version via FTP.Best regards,
MikeHi,
Sorry, perhaps I’m not understanding correctly, can you also make a video of what you are seeing in the WordPress simulator, and can you post a dropbox link to a plain text file with your page shortcode so we can test?
You can get the page shortcode by following these steps: Enable Avia Layout Builder DebuggerBest regards,
MikeHi,
Glad to hear that this helped, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeHi,
Please try this css:#top .slideshow li img,#top .slideshow li>a { height: 100% !important; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Please include an admin login in the Private Content area so we can investigate further.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Glad to hear this helped, but I’m not seeing the white space in the frame, please include a screenshot of what you are seeing.Best regards,
MikeHi,
Please try this css:.avia-image-overlay-wrap a.avia_image .image-overlay .image-overlay-inside { left: -91px !important; top: -8px !important; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Glad to hear this is sorted out, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeNovember 23, 2020 at 2:37 pm in reply to: Sidebar on smartphone, custom widgets, product variation, categories, and others #1262386Hi,
Sorry for the very late reply, as I understand your first question about what you would like to do on your shop page, in mobile, you want the sidebar on top, then the content.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 767px) { #main > .container_wrap_first.template-shop.shop_columns_5 > .container { display: flex !important; flex-wrap: wrap !important; } #main > .container_wrap_first.template-shop.shop_columns_5 > .container > main { order: 3 !important; padding: 0 !important; } #main > .container_wrap_first.template-shop.shop_columns_5 > .container > aside { order: 2 !important; } #main > .container_wrap_first.template-shop.shop_columns_5 > .container > header { order: 1 !important; } }I don’t believe this will affect any other pages, but please check thoroughly.
After applying the css, please clear your browser cache and check.Best regards,
Mike -
AuthorPosts
