-
AuthorSearch Results
-
January 23, 2024 at 10:09 am #1431769
In reply to: Choose of size in shop looks very special on tablets
Hi Ismael
When we want to select an image size in the shop on the desktop, it looks fine.
But when we want to select an image size in the shop on the tablet (landscape) it looks strange. The image size dropdown then goes to the middle of the screen and on the right side there is a red area.
See screenshots.
Best regards
MikeJanuary 23, 2024 at 9:46 am #1431768Hi,
Great, I’m glad that @guenni007 could help you out. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardJanuary 23, 2024 at 9:38 am #1431766In reply to: How to round corners with enfold theme
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,
RikardJanuary 23, 2024 at 9:36 am #1431765In reply to: All slideshows are the same …..
Hi,
Great, I’m glad to hear that you got it working again. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardJanuary 23, 2024 at 9:35 am #1431764In reply to: Import Demo
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,
RikardJanuary 23, 2024 at 5:26 am #1431737In reply to: submenu sticky on mobile
Hi,
Thank you for the screenshot.
We don’t get any errors when we add the code in the functions.php file. Please revert the changes, re-open the functions.php file or refresh the dashboard, then make sure to copy the code directly from forum before pasting it to the functions.php file.
function custom_sticky_sub_menu() { ?> <script> (function($){ var width = $(window).width(); var $stickyTop = $('#sub_menu1'); if (width <= 767) { $stickyTop.waypoint(function(direction) { if (direction === 'down') { $stickyTop.addClass('sticky-top'); } if (direction === 'up') { $stickyTop.removeClass('sticky-top'); } }, { offset: '0%' }); } })(jQuery); </script> <?php } add_action( 'wp_footer', 'custom_sticky_sub_menu', 99 );Best regards,
IsmaelJanuary 23, 2024 at 4:51 am #1431731In reply to: Change with definitions for tablets/smartphones
Hey Michael,
Thank you for the inquiry.
You can add the following css code to adjust the fullwidth breakpoint of the columns. Make sure to select the On Tablets (989 Pixels) option in the Fullwidth Break Point settings.
@media only screen and (max-width: 1400px) { .responsive #top #wrap_all .flex_column.av-break-at-tablet, .responsive #top #wrap_all .av-break-at-tablet .flex_cell { margin: 0; margin-bottom: 20px; width: 100%; display: block; } }Best regards,
IsmaelJanuary 23, 2024 at 1:56 am #1431727In reply to: Toggle accordeon element issues on Samsung mobile
Hi bonsaimedia,
I have added this CSS code in your Quick CSS, please check if this helps fix the problem:
@media only screen and (max-width:767px) { #top .single_toggle { float: none; } }Best regards,
NikkoJanuary 22, 2024 at 5:56 pm #1431701Topic: Choose of size in shop looks very special on tablets
in forum EnfoldYourChoice Informatik GmbH
ParticipantHi
We have a WooCommerce shop with Enfold.
There we can choose the size of the images.
When we select a size on the desktop, it looks normal.
When we select a size on tablets (landscape), it looks very special.
How we can fix this?
Thanks very much.
Best regards
Mike-
This topic was modified 2 years, 2 months ago by
YourChoice Informatik GmbH.
January 22, 2024 at 5:17 pm #1431688Loveronika
ParticipantHi,
I need help with the menu.
It looks good on desktop and on mobile (where it has changed to burger menu). It doesn’t look good on iPad (the menu is overlapping the logo).
How can I change the breaking point from normal menu to burger menu?
Kind regards,
VeronikaJanuary 22, 2024 at 3:10 pm #1431681Topic: Middle aligning content in Columns when stacked on mobile?
in forum Enfoldfrb1
ParticipantHi,
The content in my columns aligns to top, and are not middle aligning horizontally when the mobile break stacks my columns? Is this due to wrong setting or? I need my text and graphic content to always be middle positioned in the columns, also on mobile, so it does not stick to the top in a column with a background image. Can you help me with this issue?
January 22, 2024 at 1:16 pm #1431673In reply to: Import Demo
Hi,
I saw in an other post that you can import the demo via FTP, can you do it for me : https://kriesi.at/support/topic/unable-to-import-a-demo-3/
I need to import the construction demoMany thanks for your help,
January 22, 2024 at 10:56 am #1431664In reply to: Please give me the shortcodes
off-topic
btw. @yigit – on masonry gallery (see last code ) there is that one (4th) option missing to have “fixed manually”. Is there a reason for not having it on masonry_gallery ?
i think it would be nice to have on masonry gallery too!to have tags for media-library images is easy to obtain:
function add_tags_for_attachments() { register_taxonomy_for_object_type( 'post_tag', 'attachment' ); } add_action( 'init' , 'add_tags_for_attachments' );so we could use landscape, portrait, landscape-large, portrait-large, square for them.
January 22, 2024 at 9:55 am #1431660Topic: “Startseite” im Menü umbenennen – Private Content Feld?
in forum Enfoldludgerf
ParticipantHallo, das Thema “Startseite” im Menü umbenennen hattet ihr schon mal (https://kriesi.at/support/topic/startseite-im-menu-umbenennen/). Ich sehe wahrscheinlich den Wald vor Bäumen nicht. Ich möchtre im Menü “Startseite” umbennen. Lösung lt. Thema oben “Du musst das Menü auch noch einer Position zuweisen (siehe Link im Private Content Feld). Es gibt noch weitere Positionen, zB im Socket/Fußbereich.” Das mit der Position zuweisen und dem privaten Content Feld habe ich noch nicht gefunden (begriffen).
DankeJanuary 21, 2024 at 11:31 pm #1431647In reply to: submenu sticky on mobile
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { .responsive #top #wrap_all #sub_menu1 .container { width: 100%; max-width: 100%; } #av-custom-submenu-1 span { font-size: 12px; } #top #av-custom-submenu-1.av-subnav-menu > li > a { padding: 0px 5px 0px 5px; } #top #sub_menu1 .av-submenu-pos-right { text-align: center; } .sticky-top { position:fixed!important; top:0!important; z-index:600!important; } }Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:
function custom_sticky_sub_menu() { ?> <script> (function($){ var width = $(window).width(); var $stickyTop = $('#sub_menu1'); if (width <= 767) { $stickyTop.waypoint(function(direction) { if (direction === 'down') { $stickyTop.addClass('sticky-top'); } if (direction === 'up') { $stickyTop.removeClass('sticky-top'); } }, { offset: '0%' }); } })(jQuery); </script> <?php } add_action( 'wp_footer', 'custom_sticky_sub_menu', 99 );Then clear your caching plugin and browser, 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.
In my test with makes the sub-menu sticky on mobile ans reduces the size of the menu itme so they fit better, feel free to adjust to suit.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.Best regards,
MikeJanuary 21, 2024 at 11:10 pm #1431646In reply to: Questions on Freelancer-theme
Hi,
To adjust the main font size for different screen sizes please go to Enfold Theme Options ▸ General Styling ▸ Typography ▸ Advanced Options: Customize Typography Settings you will see a option for four screen sizes:

After selecting these ensure that you clear your cache and caching plugins, and if your server is using a object-oriented cache such as Memcached, Redis, Varnish, Litespeed, etc. you may need to also clear it.
Please note that we ask that each thread stays on a specific topic, this helps other users find solutions based on the opening subject line quicker. For further questions please open a new threadBest regards,
MikeJanuary 21, 2024 at 10:42 pm #1431644Topic: Lightbox now not working.
in forum General Questionspurmar
ParticipantHello,
Recently I noticed that the lightbox stopped working. The image opens directly, and the YouTube video redirects to YouTube. It appears that during the YT video, it opens the lightbox, but immediately redirects to YT. Do others experience this as well? Link in private content.January 21, 2024 at 8:00 pm #1431634In reply to: Questions on Freelancer-theme
Thank you :) I stick with “scroll” then.
Other questions on this theme:
1. How can I ajust the main font size to a respnsive size. It don’t want to make it 20px, but variable on desktop, mobile and tablet. Is this possible?
2. On the iPad is a space at the top and at the bottom of the pictures on the main page. How to get rod of them?
3: How to force the mobile version on iPad portrait mode (I want this on my other pages as well)
4. The color of the date on a timeline won’t change. It stays the heading-colorBest regards
January 21, 2024 at 6:06 pm #1431629Topic: submenu sticky on mobile
in forum Enfoldmacika
ParticipantHello.
Please i need to have the submenu sticky on mobile.
I found this code, but it is not so stable. the menu with scrolling disappear on mobile. Is it possible to fix it, make it more stable? And also is it possible to make my submenu on PC on right and centered on moble? And make it little bit more compact on mobile?
<?php
function mobile_sub_menu_sticky() { ?>
<script>
window.addEventListener(‘DOMContentLoaded’, function() {
(function($){
var width = $(window).width();
var $stickyTop = $(‘#sub_menu1’);
if (width <= 767) {
$stickyTop.waypoint(function(direction) {
if (direction === ‘down’) {
$stickyTop.addClass(‘sticky-top’);
}
if (direction === ‘up’) {
$stickyTop.removeClass(‘sticky-top’);
}
}, {
offset: ‘0%’
});
}
})(jQuery);
});
</script>
<?php
}
add_action(‘wp_footer’, ‘mobile_sub_menu_sticky’);Thanks you
January 21, 2024 at 4:30 pm #1431625In reply to: Accordion bug
Hi,
Thank you for your patience and the link to your staging site, as Rikard had noted above if the parent theme is activated then the error with the accordion jumping to the top of the page when clicked doesn’t occur. I don’t know why this is, but I created a new child theme for you and enabled it and the error doesn’t occur, please check the /motorcykel-testside/ page linked below. I checked on Windows in Chrome, Firefox, & EdgeBest regards,
MikeJanuary 21, 2024 at 3:52 pm #1431623In reply to: Aligning rows top and bottom within a grid
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top.home #av-layout-grid-1 .flex_cell .flex_column_table:nth-child(2) { position: absolute; bottom: -900px; }After applying the css, please clear your browser cache and check.
Best regards,
MikeJanuary 21, 2024 at 1:01 am #1431604patrick_gilles
ParticipantHello
Is it possible to center the header main in boxed site width like the other content?
And also center without the background full width the submenu in content width?look at topmenu here
developement pageIs it possible to remove the space between slides in content slider?

look at content slider middle of startpage here
developement pagethanks for your time
greetings P. Gilles-
This topic was modified 2 years, 2 months ago by
patrick_gilles.
January 20, 2024 at 11:07 pm #1431602In reply to: Custom Blog Post Template
Hey William,
To show dual sidebars you can try this customization, first set your sidebar on your post to a “right sidebar” then in your child theme add this custom “sidebar.php”<?php if ( ! defined( 'ABSPATH' ) ) { die(); } // Display both left and right sidebars echo "<aside class='sidebar sidebar_left' " . avia_markup_helper( array( 'context' => 'sidebar', 'echo' => false ) ) . '>'; echo '<div class="inner_sidebar extralight-border">'; // Display the subnavigation for pages $av_sidebar_menu = avia_sidebar_menu( false ); if( $av_sidebar_menu ) { echo $av_sidebar_menu; } $the_id = @get_the_ID(); $custom_sidebar = ''; if( ! empty( $the_id ) && is_singular() ) { $custom_sidebar = get_post_meta( $the_id, 'sidebar', true ); } /** * @param string $custom_sidebar * @return string */ $custom_sidebar = apply_filters( 'avf_custom_sidebar', $custom_sidebar ); if( $custom_sidebar ) { dynamic_sidebar( $custom_sidebar ); } else { if( empty( $avia_config['currently_viewing'] ) ) { $avia_config['currently_viewing'] = 'page'; } // general shop sidebars if( $avia_config['currently_viewing'] == 'shop' && dynamic_sidebar( 'Shop Overview Page' ) ) { // Do nothing here } // single shop sidebars if( $avia_config['currently_viewing'] == 'shop_single' ) { // Do nothing here } if( $avia_config['currently_viewing'] == 'shop_single' && dynamic_sidebar( 'Single Product Pages' ) ) { // Do nothing here } // general blog sidebars if( $avia_config['currently_viewing'] == 'blog' && dynamic_sidebar('Sidebar Blog') ) { // Do nothing here } // custom left sidebar if( $avia_config['currently_viewing'] == 'page' && dynamic_sidebar('left-sidebar') ) { // Do nothing here } // general archive sidebars if( avia_get_option( 'archive_sidebar' ) == 'archive_sidebar_separate' ) { if( $avia_config['currently_viewing'] == 'archive' && dynamic_sidebar( 'Sidebar Archives' ) ) { // Do nothing here } } // general pages sidebars if( $avia_config['currently_viewing'] == 'page' && dynamic_sidebar( 'Sidebar Pages' ) ) { // Do nothing here } // forum pages sidebars if( $avia_config['currently_viewing'] == 'forum' && dynamic_sidebar( 'Forum' ) ) { // Do nothing here } // global sidebar if( dynamic_sidebar( 'Displayed Everywhere' ) ) { // Do nothing here } /** * Filter to show default dummy sidebar * * @param false|string $default_sidebar * @return false|string */ if( apply_filters( 'avf_show_default_sidebars', $default_sidebar ) ) { if( apply_filters( 'avf_show_default_sidebar_pages', true ) ) { avia_dummy_widget(2); } if( apply_filters( 'avf_show_default_sidebar_categories', true ) ) { avia_dummy_widget(3); } if( apply_filters( 'avf_show_default_sidebar_archiv', true ) ) { avia_dummy_widget(4); } // customize default sidebar and add your sidebars do_action ( 'ava_add_custom_default_sidebars' ); } } echo '</div>'; echo '</aside>'; // Right sidebar echo "<aside class='sidebar sidebar_right' " . avia_markup_helper( array( 'context' => 'sidebar', 'echo' => false ) ) . '>'; echo '<div class="inner_sidebar extralight-border">'; // Display the subnavigation for pages $av_sidebar_menu = avia_sidebar_menu( false ); if( $av_sidebar_menu ) { echo $av_sidebar_menu; } $the_id = @get_the_ID(); $custom_sidebar = ''; if( ! empty( $the_id ) && is_singular() ) { $custom_sidebar = get_post_meta( $the_id, 'sidebar', true ); } /** * @param string $custom_sidebar * @return string */ $custom_sidebar = apply_filters( 'avf_custom_sidebar', $custom_sidebar ); if( $custom_sidebar ) { dynamic_sidebar( $custom_sidebar ); } else { if( empty( $avia_config['currently_viewing'] ) ) { $avia_config['currently_viewing'] = 'page'; } // general shop sidebars if( $avia_config['currently_viewing'] == 'shop' && dynamic_sidebar( 'Shop Overview Page' ) ) { // Do nothing here } // single shop sidebars if( $avia_config['currently_viewing'] == 'shop_single' ) { // Do nothing here } if( $avia_config['currently_viewing'] == 'shop_single' && dynamic_sidebar( 'Single Product Pages' ) ) { // Do nothing here } // general blog sidebars if( $avia_config['currently_viewing'] == 'blog' && dynamic_sidebar('Sidebar Blog') ) { // Do nothing here } // custom right sidebar if( $avia_config['currently_viewing'] == 'page' && dynamic_sidebar('right-sidebar') ) { // Do nothing here } // general archive sidebars if( avia_get_option( 'archive_sidebar' ) == 'archive_sidebar_separate' ) { if( $avia_config['currently_viewing'] == 'archive' && dynamic_sidebar( 'Sidebar Archives' ) ) { // Do nothing here } } // general pages sidebars if( $avia_config['currently_viewing'] == 'page' && dynamic_sidebar( 'Sidebar Pages' ) ) { // Do nothing here } // forum pages sidebars if( $avia_config['currently_viewing'] == 'forum' && dynamic_sidebar( 'Forum' ) ) { // Do nothing here } // global sidebar if( dynamic_sidebar( 'Displayed Everywhere' ) ) { // Do nothing here } /** * Filter to show default dummy sidebar * * @param false|string $default_sidebar * @return false|string */ if( apply_filters( 'avf_show_default_sidebars', $default_sidebar ) ) { if( apply_filters( 'avf_show_default_sidebar_pages', true ) ) { avia_dummy_widget(2); } if( apply_filters( 'avf_show_default_sidebar_categories', true ) ) { avia_dummy_widget(3); } if( apply_filters( 'avf_show_default_sidebar_archiv', true ) ) { avia_dummy_widget(4); } // customize default sidebar and add your sidebars do_action ( 'ava_add_custom_default_sidebars' ); } } echo '</div>'; echo '</aside>'; ?>then in your child theme functions.php add this function:
function custom_theme_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Left Sidebar', 'text-domain' ), 'id' => 'left-sidebar', 'description' => esc_html__( 'Add widgets here to appear in the left sidebar.', 'text-domain' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Right Sidebar', 'text-domain' ), 'id' => 'right-sidebar', 'description' => esc_html__( 'Add widgets here to appear in the right sidebar.', 'text-domain' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); } add_action( 'widgets_init', 'custom_theme_widgets_init' ); function custom_left_sidebar() { ?> <script> (function($) { $('.single-post .sidebar_left').detach().insertBefore('.single-post .content.av-main-single'); })(jQuery); </script> <?php } add_action( 'wp_footer', 'custom_left_sidebar', 99 );then add this custom CSS:
.responsive .single-post .container { max-width: 98%; } #top.single-post #main .sidebar { display: inline-block; width: 20%; border: none; } #top.single-post .content.units.alpha.av-main-single { width: 58%; clear: none; border:none; } #top.single-post #main .sidebar.sidebar_left { float: left; }Now you will have two new sidebars:

the other widget areas will also still work for the default sidebar position if you wish.
You will now have dual sidebars:

Please note that for there to be room for the second sidebar we used the css to change the width of the page and the main content and the sidebars, you can tinker with the css above to suit your needs.Best regards,
MikeJanuary 20, 2024 at 7:05 pm #1431592In reply to: logo h2 tags are above my h1 tag
Well this is odd. There is so much Custom CSS on my site (fixing various issues) that I have logo stuff in both the functions.php AND iin the custom CSS field. Changing the functions.php to <p></p> tags fixed the header issue . . . thank you for that. Now I am trying to get the font black (and to stay black vs having a hover color) AND for it to the first and second lines (Line 1: Jonathan F. Anderson, LPC-S Line 2: Gate Healing, PLLC) to look right next to the compass logo in terms of size and line spacing . . . it basically did this before, but the h2 tag had to go and that screwed it up.
Thanks a bunch for any guidance here.
jonPS I tried adding color: black; to the custom CSS subtext styling code to no avail. I also tried going into functions.php and changing the Logo subtext section to:
/* Logo Subtext regular text */
add_filter(‘avf_logo_subtext’, ‘kriesi_logo_addition’);function kriesi_logo_addition($sub) {
$sub .= ‘<p style=”color: black;”><b>Jonathan F. Anderson, LPC-s</b></p>’;
$sub .= ‘<p style=”color: black;”><b>Gate Healing, PLLC</b></p>’;
return $sub;
}Also to no avail. I’m going to stop trying now before I break something.
-
This reply was modified 2 years, 2 months ago by
gatehealing.
January 20, 2024 at 6:42 pm #1431591In reply to: Latin text in search results
Hi,
Thank you for your patience, I believe you are referring to this text:

this is in the manually excerpt for the portfolio post, if you are using the Block Editor look in the sidebar:

if you don’t see the option you may need to enable it in the three dots and then preferences:

the panels and excerpt:

if you are using the Classic Editor look below the post:

if you don’t see the option you may need to enable it in the screen options at the top of the page:

Best regards,
MikeJanuary 20, 2024 at 6:26 pm #1431590In reply to: Color sectiom on tablets problem
Please attach the links to this thread in the Private Content area or in the message area
but what about private content or discussion, there is no way to attach anything here!It looks like you may have started this thread via the contact form instead of the support forum
The discussion was started here: https://kriesi.at/support/topic/color-sectiom-on-tablets-problem-2/ but was closed by IsmaelHonestly, I’m starting to get nervous. After paying $40 to renew support, no one has taken my issue seriously for two days. Upload here, attach from here…read my first post carefully (links included) and you’ll see that everything is very clear.
January 20, 2024 at 3:44 pm #1431564In reply to: ENFOLD Theme Fonts
Hey Francesco,
Thanks when I check your main menu links they are using your custom font:

I note that you have used the Advanced Styling Main Menu Option 4 times and some set the font as Supera Gothic Light and others are Supera Gothic Book, so perhaps this is the issue that you are referring to.

The setting at the bottom will be the one to take preference, not the ones at the top in your screenshot, try removing the unnecessary duplicates and use one setting, you can click the red X to remove the extra ones.

Best regards,
MikeJanuary 20, 2024 at 2:30 pm #1431559In reply to: Add and change color overlay for Masonry Gallery
You can close this topic. Thank you.
January 20, 2024 at 9:55 am #1431539In reply to: Blog post, formatted excerpt, false representation
Hi,
Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardJanuary 20, 2024 at 9:29 am #1431534In reply to: Add and change color overlay for Masonry Gallery
-
This topic was modified 2 years, 2 months ago by
-
AuthorSearch Results
-
Search Results
-
Hi
We have a WooCommerce shop with Enfold.
There we can choose the size of the images.
When we select a size on the desktop, it looks normal.
When we select a size on tablets (landscape), it looks very special.
How we can fix this?
Thanks very much.
Best regards
MikeHi,
I need help with the menu.
It looks good on desktop and on mobile (where it has changed to burger menu). It doesn’t look good on iPad (the menu is overlapping the logo).
How can I change the breaking point from normal menu to burger menu?
Kind regards,
VeronikaHi,
The content in my columns aligns to top, and are not middle aligning horizontally when the mobile break stacks my columns? Is this due to wrong setting or? I need my text and graphic content to always be middle positioned in the columns, also on mobile, so it does not stick to the top in a column with a background image. Can you help me with this issue?
Hallo, das Thema “Startseite” im Menü umbenennen hattet ihr schon mal (https://kriesi.at/support/topic/startseite-im-menu-umbenennen/). Ich sehe wahrscheinlich den Wald vor Bäumen nicht. Ich möchtre im Menü “Startseite” umbennen. Lösung lt. Thema oben “Du musst das Menü auch noch einer Position zuweisen (siehe Link im Private Content Feld). Es gibt noch weitere Positionen, zB im Socket/Fußbereich.” Das mit der Position zuweisen und dem privaten Content Feld habe ich noch nicht gefunden (begriffen).
DankeTopic: Lightbox now not working.
Hello,
Recently I noticed that the lightbox stopped working. The image opens directly, and the YouTube video redirects to YouTube. It appears that during the YT video, it opens the lightbox, but immediately redirects to YT. Do others experience this as well? Link in private content.Topic: submenu sticky on mobile
Hello
Is it possible to center the header main in boxed site width like the other content?
And also center without the background full width the submenu in content width?look at topmenu here
developement pageIs it possible to remove the space between slides in content slider?

look at content slider middle of startpage here
developement pagethanks for your time
greetings P. Gilles
