-
AuthorSearch Results
-
March 25, 2024 at 10:41 am #1438259
Topic: Different mobile view
in forum Enfoldmaryenvato
ParticipantCan you help me to fix the different view between desktop e mobile?
I didn’t setting anything.. In addition, there are very small icons on mobile.March 25, 2024 at 9:24 am #1438244In reply to: Add a header widget area
Hey Rocuant,
Thank you for the inquiry.
We added this code in the functions.php file to insert the widget area in the header.
<?php //-------------------------------- // Header widget area //-------------------------------- add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'header' ); }We then created a custom widget area named “header” in the Appearance > Widgets panel and added a Text widget. To adjust the widget’s position within the header, we added the following code in the Quick CSS field:
#top #header #header_main .widget { position: absolute; right: 50%; transform: translateX(-50%); }Please check the documentation below for more info: https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
IsmaelMarch 25, 2024 at 8:50 am #1438235In reply to: robots.txt is invalid
Hi Rikard,
you can close the topic, thanks for the support.
Kind regards,
KarinMarch 25, 2024 at 8:49 am #1438234In reply to: Zeitleiste
Now it has worked, thank you
You can close the topicLinda
March 25, 2024 at 8:40 am #1438232In reply to: Picture with headline
Hey northorie,
Thank you for the inquiry.
You can replicate the layout by adding a Text Block within a Column element, apply the yellow background to the column, then go to Advanced > Developer Settings. In the Custom CSS Class name field, add “av-custom-header-column”. Then add the following code in the Quick CSS field to adjust the position of the text block within the column.
#top .av-custom-header-column .avia_textblock { padding: 40px 20px; background: white; position: absolute; right: -50px; top: 50px; }Best regards,
IsmaelMarch 25, 2024 at 8:15 am #1438226In reply to: Social Icons Widget Alignment
Hi,
Thank you for the update.
Please add this code at the very bottom of the css modifications.
#top #wrap_all #social .social_bookmarks { margin: 0; display: flex; float: none; justify-content: center; margin-left: -50px; }Best regards,
IsmaelMarch 25, 2024 at 8:07 am #1438224In reply to: Header Widget Configuation
Hi,
Thank you for the update.
You can adjust the order property to reverse the location of the button widget and burger menu. Then, set the left margin of the widget to auto to keep it close to the burger menu icon.
.responsive #top #header #header_main .inner-container .widget { order: 2; flex-basis: auto; padding: unset; clear: none!important; align-self: center; align-items: flex-end; z-index: 1; margin-left: auto; } .responsive #top #header #header_main .inner-container .main_menu { order: 3; flex-basis: auto; align-items: center; align-self: center; }This should also fix the layout of the header on smaller screens.
Best regards,
IsmaelMarch 25, 2024 at 8:00 am #1438222In reply to: Image change on accordion click
Hey mvi,
Thank you for the inquiry.
Did you add this script?
jQuery(document).ready(function($) { // Replace the accordion selectors with your own accordion toggler selectors var accordions = $('#skillspring-process .toggler'); function forceSlideChange(slideshow, targetIndex) { var slides = slideshow.find('.avia-slideshow-inner li'); var activeSlide = slides.filter('.active-slide'); var targetSlide = slides.eq(targetIndex); // Stop any ongoing animations slides.stop(true, true); // Hide the current active slide activeSlide.removeClass('active-slide').css({ 'opacity': 0, 'visibility': 'hidden' }); // Show the target slide targetSlide.addClass('active-slide').css({ 'opacity': 1, 'visibility': 'visible' }); // Update the active control dot slideshow.find('.avia-slideshow-dots .goto-slide').removeClass('active').eq(targetIndex).addClass('active'); } accordions.on('click', function() { // Get the index of the clicked accordion toggler var index = accordions.index(this); // Replace the slideshow selector with your own slideshow selector var slideshow = $('#skillspring-process-slideshow'); // Check if the slideshow exists on the page if (slideshow.length) { forceSlideChange(slideshow, index); } }); });You should also apply the ID “skillspring-process” to the Accordion element and the ID “skillspring-process-slideshow” to the Easy Slider element.
Best regards,
IsmaelMarch 25, 2024 at 1:54 am #1438217In reply to: navigation is over logo on laptop
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardMarch 24, 2024 at 5:02 pm #1438200Topic: Blog: header transparent but only in DE, not EN
in forum Enfoldxeovision
ParticipantHallo,
i am refering ro my previous qiestion: https://kriesi.at/support/topic/blog-add-header-transparent-to-archive-page/
This works fine but i wonder why in the englisch page the header isnt transparent? Something to add to the code? I thought the variables would be the same.The header is white, not transparent: https://ihkm.org/en/ and /de/
Additional: Sometimes it is shown fine in Firefox but still broken in Chrome and Safari …
March 24, 2024 at 4:36 am #1438192In reply to: Title is not updating
The issue was with the firewall. The hosting service resolved the issue, and now updating the Title of the images works. You can close this topic. Thank you.
March 23, 2024 at 10:55 pm #1438095In reply to: Social Icons Widget Alignment
Rikard, Unfortunately this did not work.
I used Guenni007’s javascript and CSS with few modifications. Perhaps something is in conflict? CSS for the icons:
/* ———- Social Icons ———- */
#top .socialbookmarks-widget .social_bookmarks {
float: left;
margin: 15px 0 0 ;
position: relative;
}#top .socialbookmarks-widget .social_bookmarks li {
float: left;
clear: right !important;
}#top .socialbookmarks-widget .social_bookmarks {
display: inline;
}#top .socialbookmarks-widget .social_bookmarks li {
border-right-width: 0;
width: 50px;
}#top .socialbookmarks-widget .social_bookmarks li a {
width: 50px;
line-height: 50px;
min-height: 50px;
}#top .socialbookmarks-widget .social_bookmarks li a:before {
font-size: 30px
}/* social icons style */
#top #wrap_all .social_bookmarks li a {
width: 50px;
line-height: 50px;
margin-left: 50px;
border-radius: 100px;
}
#top #wrap_all .social_bookmarks {
height: 50px;
margin-left: 50px;
}
#top #wrap_all .social_bookmarks li {
width: 50px;
font-size: 15px;
margin-left: 50px;
}
#top #wrap_all .av-social-link-instagram a {
color: #fff;
background-color: #78e7e4;
}
#top #wrap_all .av-social-link-instagram:hover a,
#top #wrap_all .av-social-link-instagram a:focus {
color: #fff;
background-color: #efc511;
}
#top #wrap_all .av-social-link-facebook a {
color: #fff;
background-color: #78e7e4;
}
#top #wrap_all .av-social-link-facebook:hover a,
#top #wrap_all .av-social-link-facebook a:focus {
color: #fff;
background-color: #efc511;
}
#top #wrap_all .av-social-link-twitter a {
color: #fff;
background-color: #78e7e4;
}
#top #wrap_all .av-social-link-twitter:hover a,
#top #wrap_all .av-social-link-twitter a:focus {
color: #fff;
background-color: #efc511;
}
#top #wrap_all .av-social-link-youtube a {
color: #fff;
background-color: #78e7e4;
}
#top #wrap_all .av-social-link-youtube:hover a,
#top #wrap_all .av-social-link-youtube a:focus {
color: #fff;
background-color: #efc511;
}
#top #wrap_all .av-social-link-linkedin a {
color: #fff;
background-color: #78e7e4;
}
#top #wrap_all .av-social-link-linkedin:hover a,
#top #wrap_all .av-social-link-linkedin a:focus {
color: #fff;
background-color: #efc511;
}March 23, 2024 at 10:39 pm #1438093In reply to: Separation between Color Section and Footer
Rikard, Unfortunately, this code did not work. Also, since this uses a page ID, it seems that it would be a problem if needed on additional pages.
And while asking about this, I also have a similar need on some pages to have a gap between the header and a color section used at the top. https://ibb.co/25wcDSh
I tried this, but it causes issues with portrait mode: placed a color section and inserted a whitespace module set to 5 height. Then I added this CSS to remove the extra padding:
.avia-section {
min-height: 0!important;
}
It works in desktop mode, but in responsive mode, it causes the color section to under-lap the header. I hope there’s a more elegant way, as I’m also concerned that just calling out the class “.avia-section” could effect other things.So I need a CSS fix for both that can work on any and/or all pages in the site that also is OK with a responsive design. Thanks.
-
This reply was modified 2 years ago by
blaisen.
March 23, 2024 at 10:17 pm #1438092In reply to: Sidebar on blogpost pages
Hi,
Glad to hear that this helped, an easy way to change the color of your widget items is add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top.single-post .widget_recent_entries a { color: #444444; }After applying the css, please clear your browser cache and check.
Best regards,
MikeMarch 23, 2024 at 9:45 pm #1438088Hey Monika,
Thanks for the link to your page but I don’t find “auch nice” or a large gap, is this only on certain screen sizes? Do you mean the “Was haben wir gemacht?” section?
Typically with parallax you also need to use negative margins for the items up more so as the top items more up they show the item under.
Give this a try and if you use the duplicate feature and create a test page with an admin login we can demonstrate how the negative margin could help.
Perhaps a screenshot would help us know where the gap is.Best regards,
MikeMarch 23, 2024 at 9:30 pm #1438086In reply to: Black lines when video in section color
Hey carmen,
Thank you for the link to your site, I downloaded your video and it looks like the top and bottom black bars are in your video, so you will need to edit your video to crop these out:

For the form drop downs try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .entry-content-wrapper select.wpcf7-form-control { border-radius: 10px; }After applying the css, please clear your browser cache and check.
Best regards,
MikeMarch 23, 2024 at 8:14 pm #1438078In reply to: Two problems with the main menue and more…
Hey Katja,
Thank you for the link to your site, on your first level menu items they are blue until mouse-over then they are yellow, but the backend of the second level is already yellow so what colors do you want the mouse-over and active page second level menu items to be?
mobile devices don’t have a mouse-over function, if you want the first level active menu items to have a yellow background you could try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top #wrap_all #av-burger-menu-ul li.current-menu-item a { background-color: #fff236; }but second level mobile menu items all share the same background color.
To add the header image to your category pages try the Unique Headers plugin.
For your search field try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .header_color .avia-search-tooltip input[type='text']#s { background-color: #fff; color: #30302f; }Fot your widget item, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top #wrap_all .main_color .tribe-events-widget-events-list__header-title { color: #c3512f; text-align: left; font-size: 16px; font-weight: 600; } #top .main_color .tribe-events-widget-events-list__header-title { border-style: solid; border-width: 1px; border-color: rgb(235, 232, 226); padding: 10px 0; border-left: none; border-right: none; margin-bottom: 15px; }For your last question, some items have text some don’t they are not the same.
Please note that we kindly ask that each thread is for a single topic, it is hard to manage threads with many questions, typically it causes confusion when other Mods try to help or when clients answer but are not so clear, Thank you for your patience and understanding and for using Enfold.Best regards,
MikeMarch 23, 2024 at 7:19 pm #1438076Hello Mike,
In this case versions before 5.3 had a different directory structure, typically updating the theme should have corrected this, but you were using WP Rocket cache which contenued to look the file in the old location,
Maybe you misunderstood my point: the thing is wp-rocket is NOT looking in te old location but in the new location:
wp-content/uploads/dynamic_avia/avia_posts_css/post-17.css – can not be foundThat error is about the new location, not the old one!
It’s probably just me, but I have already been working on 2 topics to bring this problem to Enfold support’s attention. But you don’t understand my point, I probably can’t explain it properly then…
March 23, 2024 at 6:41 pm #1438074Hey Alwin,
This looks similar to your other thread
In this case versions before 5.3 had a different directory structure, typically updating the theme should have corrected this, but you were using WP Rocket cache which contenued to look the file in the old location, so when you cleared the cache it was solved.
Deleting the old folder also caused WP Rocket to rebuild it’s cache, I don’t believe that this was necessary it was just another way around the WP Rocket cache, but it still comes back to clearing the WP Rocket cache, because the theme on it’s own would not be looking for the wrong file location.
So I also recommend clearing your WP Rocket cache as Ismael pointed out in your other thread.Best regards,
MikeMarch 23, 2024 at 4:41 pm #1438058In reply to: Links and text in footer not changing
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardMarch 23, 2024 at 4:41 pm #1438057In reply to: Logo/Partner Logo area only shows half of the arrows
Hey jmjwebsites,
Please try the following in Quick CSS under Enfold->General Styling:
#top .avia-smallarrow-slider .avia-slideshow-arrows a::before { line-height: 0; padding-left: 9px; padding-right: 15px; padding-top: 12px; padding-bottom: 15px; }Best regards,
RikardMarch 23, 2024 at 4:19 pm #1438052In reply to: robots.txt is invalid
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardMarch 23, 2024 at 3:30 pm #1438046In reply to: Blog posts (grid) – change element position etc
Hey Jason,
Thanks for your patience, the blog element layout is dependent on the Enfold Theme Options ▸ Blog Layout ▸ Blog Styling
it looks like you are using the Modern Business

you also could use Elegant

and Default (Business)

So I recommend choosing the one that is closest to your overall goal, which in this case seems to be Default (Business) and then adjust from there. So in this example it looks like we only need to move the date above the title, I recommend using jQuery in your child theme functions.php instead of customizing the element php file in your child theme, \enfold\config-templatebuilder\avia-shortcodes\postslider\postslider.php, because future features may not work correctly if you use an older version of the file.
For example:function custom_move_time_script() { ?> <script> (function($){ $( '.slide-entry' ).each(function() { $( this ).find( 'time.slide-meta-time' ).insertBefore( $(this).find('header')); }); })(jQuery); </script> <?php } add_action( 'wp_footer', 'custom_move_time_script', 99 );
Then you can make the rest of the adjustments with css, like hiding the comments, making the date larger & gold, adding top padding, making the read more gold, etc..slide-content .slide-meta { display: none; } .slide-content .slide-meta-time { font-size: 14px; color: gold; } .slide-content .slide-entry-title { font-size: 28px; padding-bottom: 10px; } .slide-content { padding-top: 20px; } .slide-content .read-more-link a { color: gold; }
So give this a try and if you need further help please create a test page so we can examine your element and offer more help.Best regards,
MikeMarch 23, 2024 at 1:48 pm #1438042Hey M-Graphics24,
Thanks for your patience, you can try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.avia_mobile #top .avia-full-stretch { background-attachment: fixed !important; }but please note that this will not work for all iPhones or iPads, and may behave oddly, this is due to a limitation on these devices that can not be changed, so to offer a uniform experience across devices the background-attachment was changed to scroll on mobile devices.
If this doesn’t work for you then it’s best to not use it.Best regards,
MikeMarch 23, 2024 at 12:07 pm #1438037Topic: symbol from symbollist is always over the text instead before
in forum Enfoldrixi
ParticipantDo you have an idea how i can put the symbols (arrows) before the text than iunder the text?
On desktop its ok mobile not.That would be great!
Many greetings rixi
March 23, 2024 at 10:43 am #1438036Topic: navigation is over logo on laptop
in forum Enfoldrixi
Participanthi, the navigation gets over the logo on a webpage when i open it on a laptop .
Is there a code that i can always use on quick css when i have that problem or is it always different?
Many greetings
rixiMarch 22, 2024 at 6:48 pm #1438026Topic: Logo/Partner Logo area only shows half of the arrows
in forum Enfoldjmjwebsites
ParticipantHi, I am using the Logo/Partner block on our front page, but only the top half of the arrows are showing. Can you help me fix that?
March 22, 2024 at 3:48 pm #1438019Monika
ParticipantHey there,
I love the parallax Column animation and I uses it a lot.
I was just wondering If its possible to fix one thing that annoys me a bit:
after the “Bottom to top” animated Columns, there stays this big hole where nothing happens.
How can I avoid that ?In this Example in the private section, at the bottom after the Devices, before “auch nice” there is this big gap.
Thanks in advance
Cheers
MonikaMarch 22, 2024 at 12:34 pm #1438004In reply to: Images Cut Off
Hi,
Thank you for your patience, I see that these images are grid cell background images which do not have a height in the same way as a image, typically the background image fills the grid but the grid height comes from the grid content, which in this case there is no content. Nonetheless I have added this css to your Quick CSS and this seems to heml for mobile devices. please clear your browser cache and check.@media only screen and (max-width: 767px) { .responsive #top #wrap_all #welcome.av-flex-cells .no_margin.flex_cell.avia-full-stretch.avia-builder-el-1 { height: 550px !important; } .responsive #top #wrap_all #meet.av-flex-cells .no_margin.flex_cell.avia-full-stretch.avia-builder-el-21 { height: 420px !important; } .responsive #top #wrap_all #events.av-flex-cells .no_margin.flex_cell.avia-full-stretch.avia-builder-el-23 { height: 420px !important; } .responsive #top #wrap_all #meetillustratror.av-flex-cells .no_margin.flex_cell.avia-full-stretch.avia-builder-el-47 { height: 420px !important; } .responsive #top #wrap_all #recent.av-flex-cells .no_margin.flex_cell.avia-full-stretch.avia-builder-el-62 { height: 420px !important; } .responsive #top #wrap_all #contact.av-flex-cells .no_margin.flex_cell.avia-full-stretch.avia-builder-el-64 { height: 420px !important; } }Best regards,
MikeMarch 22, 2024 at 7:37 am #1437978In reply to: Unfold textblock performance issues
Hi,
Thank you for the update.
We get an error in the console when the WP Rocket plugin is activated. The error is generated from the themes/SI-SUITES/js/custom.js file:
jQuery(document).ready(function() { var sections = jQuery('.avia-section') , menu = jQuery('.av-submenu-container') , nav_height = menu.outerHeight(); jQuery(window).on('scroll', function() { var cur_pos = jQuery(this).scrollTop(); var activeMenuItem = menu.find('.active-menu-item'); sections.each(function() { var section = jQuery(this); var top = section.offset().top - 300; var bottom = top + section.outerHeight(); if (cur_pos >= top && cur_pos <= bottom) { var activeLink = menu.find('a[href="#' + section.attr('id') + '"]'); activeMenuItem.removeClass('active-menu-item'); activeLink.addClass('active-menu-item'); if (activeLink) { var activeItemOffset = activeLink.offset().left - menu.offset().left; menu.scrollLeft(activeItemOffset) } } }) }) })Did you add this script? Please remove the script temporarily, then check the page again.
Best regards,
Ismael -
This reply was modified 2 years ago by
-
AuthorSearch Results
-
Search Results
-
Topic: Different mobile view
Can you help me to fix the different view between desktop e mobile?
I didn’t setting anything.. In addition, there are very small icons on mobile.Hallo,
i am refering ro my previous qiestion: https://kriesi.at/support/topic/blog-add-header-transparent-to-archive-page/
This works fine but i wonder why in the englisch page the header isnt transparent? Something to add to the code? I thought the variables would be the same.The header is white, not transparent: https://ihkm.org/en/ and /de/
Additional: Sometimes it is shown fine in Firefox but still broken in Chrome and Safari …
Do you have an idea how i can put the symbols (arrows) before the text than iunder the text?
On desktop its ok mobile not.That would be great!
Many greetings rixi
hi, the navigation gets over the logo on a webpage when i open it on a laptop .
Is there a code that i can always use on quick css when i have that problem or is it always different?
Many greetings
rixiHi, I am using the Logo/Partner block on our front page, but only the top half of the arrows are showing. Can you help me fix that?
Hey there,
I love the parallax Column animation and I uses it a lot.
I was just wondering If its possible to fix one thing that annoys me a bit:
after the “Bottom to top” animated Columns, there stays this big hole where nothing happens.
How can I avoid that ?In this Example in the private section, at the bottom after the Devices, before “auch nice” there is this big gap.
Thanks in advance
Cheers
Monika
