-
AuthorSearch Results
-
July 15, 2024 at 6:47 pm #1462110
In reply to: icon circle
Hey Qgrafica_7,
Please try the following in Quick CSS under Enfold->General Styling:
#top #main span.av-milestone-icon { border-color: transparent; }Best regards,
RikardJuly 15, 2024 at 6:43 pm #1462106Hi,
Great, I’m glad that Mike 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,
RikardJuly 15, 2024 at 4:33 pm #1462100In reply to: YouTube background video not looping
Hi,
Great, I’m glad that Mike 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,
RikardJuly 15, 2024 at 3:50 pm #1462096In reply to: show marker in certain pictures in portfolio grid
Thank you.
I am a bit stumped. I thought it is a quite easy fix, but I run into problems.My idea is to first figure out how to get anything shown on top of the image. Lets say ‘Test’ and then when that works make it so that it only displays when the portfolio item has a certain attribute. But I am already struggling to get “test” to show up.
Here is the code I found to change:
$image = get_the_post_thumbnail( $the_id, $image_size, $image_attrs ); if( ! empty( $image ) ) { $output .= '<div class="av_table_col portfolio-grid-image">'; $output .= "<{$link_markup[0]} data-rel='grid-" . avia_post_grid::$grid . "' class='grid-image avia-hover-fx'>{$custom_overlay} {$image}</{$link_markup[1]}>"; $output .= '</div>'; } $output .= '<footer class="entry-footer"></footer>'; $output .= '</article>'; $output .= '</div>';And here is the code I change it to:
$image = get_the_post_thumbnail($the_id, $image_size, $image_attrs); if (!empty($image)) { $output .= '<div class="av_table_col portfolio-grid-image">'; $output .= "<{$link_markup[0]} data-rel='grid-" . avia_post_grid::$grid . "' class='grid-image avia-hover-fx'>"; $output .= "{$custom_overlay} {$image}"; $output .= "<div class='overlay-text'>test</div>"; // Add this line for the overlay $output .= "</{$link_markup[1]}>"; $output .= '</div>'; } $output .= '<footer class="entry-footer"></footer>'; $output .= '</article>'; $output .= '</div>';I also added the following passage to my style.css
.grid-image { position: relative; display: inline-block; } .grid-image img { display: block; width: 100%; height: auto; } .overlay-text { position: absolute; bottom: 10px; left: 10px; background-color: rgba(255, 255, 255, 0.7); color: #dada21; padding: 5px 10px; border-radius: 5px; font-size: 16px; font-weight: bold; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }Unfortunately I dont get the text to show up.
Where is my mistake?July 15, 2024 at 1:59 pm #1462094Hi,
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,
RikardJuly 15, 2024 at 7:19 am #1462061In reply to: Pauseable video in Header section
although I believe that it is rather good if visitors can interact with autoplay videos. Turning it off is certainly better than leaving the website because a video is annoying!
July 15, 2024 at 7:15 am #1462059In reply to: Pauseable video in Header section
Hey reqonsult,
Thank you for the inquiry.
You can use this css code to disable the click overlay or the invisible play/pause control.
#top .av-video-slide.av-video-playing { pointer-events: none; }Best regards,
IsmaelJuly 15, 2024 at 3:33 am #1462054Hello again
Sorry for the panic! Now I am safe – but I still need some support.
1) I found out that it is possible to go to Theme Options -> Layout Builder.-> Debug Mode (Backend Only) -> And choose “Enable for admins only”. Here this setting does not break the site.If I do it via functions.php in the child theme the site breaks down.
2) I managed to copy all my codes: meaning now all the toggles are back in the bottom Accordion. You can see them here: https://stegemueller.dk/faq-til-tng/
3) I have cloned my live site to my test site via WP Toolkit. It works.
4) Neither on the live site nor on the test site is it possible to edit the page by clicking on the bottom Accordion icon. Only a blank screen is returned.
5) I have searched the code for <div> and </div>. There are none.
6) Now my question is: How do I open the bottom Accordion. (I can open the top Accordion just fine).
July 14, 2024 at 11:25 pm #1462050Topic: Reduction of the font size on mobile devices
in forum Enfoldreqonsult
ParticipantIs it possible to reduce the font size on mobile devices only? We are satisfied with the font size in desktop devices, but some text is partially cut off in the mobile view. Thank you.
July 14, 2024 at 8:50 pm #1462047In reply to: Menu Items for mobile
Hi,
Try this css instead#top #header_meta .phone-info span { font-family: 'Raleway', sans-serif; font-size: 18px; font-weight: 900 !important; color: #000; }After applying the css, please clear your browser cache and check.
Best regards,
MikeJuly 14, 2024 at 4:02 pm #1462033In reply to: Email field in mobile view in a different color
Hey Diana,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .main_color input[type='email'] { border-color: #ffffff; background-color: #f6f7f9; color: #1e242f; font-weight: 300; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeJuly 14, 2024 at 3:53 pm #1462032In reply to: Line across entire width – double ?
Hey Diana,
The line is a after section feature, to remove try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .container_wrap { border-top-style: none; }After applying the css, please clear your browser cache and check.
Best regards,
MikeJuly 13, 2024 at 11:01 pm #1461997Hey Peter,
I will try, in my example I wanted to use a menu created in WordPress, so first create a menu and save the menu name for the function code later:

For the logo we will add the image via css so you will need to add the custom classes button logo

For the CTA we add the classes button cta:

Then on the page you want to use this use the option Hide Header on this page:

and add the shortcode [custom_menu menu=”test menu with logo”] to your page, adjust the menu name to suit.
Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:function display_custom_menu($atts) { $atts = shortcode_atts( array( 'menu' => '', ), $atts, 'custom_menu' ); $menu = $atts['menu']; if (!empty($menu)) { $args = array( 'menu' => $menu, 'container' => false, 'menu_class' => 'av-main-nav scmenu', 'echo' => false ); $menu_html = wp_nav_menu($args); $output = '<header id="header" style="position: absolute; top: 0;">'; $output .= '<nav class="main_menu" style="display: flex; align-items: center; justify-content: center; width: 100%;">'; $output .= $menu_html; $output .= '</nav>'; $output .= '</header>'; return $output; } else { return '<p>No menu specified or menu not found.</p>'; } } add_shortcode('custom_menu', 'display_custom_menu');and this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top #wrap_all .main_menu ul.scmenu { list-style: none; } #top #wrap_all .main_menu .scmenu .menu-item a { color: var(--enfold-header_replacement_menu_color); } #top #wrap_all .main_menu .scmenu { background-color: rgba(0, 0, 0, 0.2); } body:not(.wp-admin) li.button.logo { background-image: url(/wp-content/uploads/2024/07/logo_fysiotherapie_groningen.webp); background-size: contain; background-repeat: no-repeat; background-position: 50% 50%; width: 200px; margin-left: 0; } body:not(.wp-admin) li.button.logo a { opacity: 0; } #top #wrap_all .main_menu .scmenu .button.menu-item.cta { background-color: orange; }and adjust the image URL to suit
The expected results should be like this when a color section with a image is used:

Best regards,
MikeJuly 13, 2024 at 7:59 pm #1461994Hi,
On the demo page that you linked to, The sidebar menu is automatically created by the Page Sidebar Navigation option.

I believe the issue with the sidebar showing lower on the page when you add a tab section element is that it is a full width element and this moves the sidebar, there are a few elements like the color section and full width slider that is known to do this.
Nonetheless you can add the Page Sidebar Navigation with a shortcode, first add this code to the end of your child theme functions.php file in Appearance ▸ Editor://shortcode [avia_sidebar_menu] function display_avia_sidebar_menu() { ob_start(); global $avia_config; if (function_exists('avia_sidebar_menu')) { $av_sidebar_menu = avia_sidebar_menu(false); if ($av_sidebar_menu) { echo $av_sidebar_menu; } } return ob_get_clean(); } add_shortcode('avia_sidebar_menu', 'display_avia_sidebar_menu');then add this shortcode [avia_sidebar_menu]

and note that the theme option Page Sidebar Navigation must be enabled:

then it will show, note that the style is the same because it is in the sidebar:

but if you add the shortcode to your page it will have a different style, so add this css:#top #main .widget_nav_menu .nested_nav>li:first-child, #top #main .widget_nav_menu li { border: none; } #top #main .main_color .widget_nav_menu .current_page_item>a { color: var(--enfold-main-color-heading); } #top #main .main_color .widget_nav_menu a { color: var(--enfold-main-color-meta); } #top #main .main_color .widget_nav_menu ul:first-child>.current_page_item { background: var(--enfold-main-color-bg2); } #top #main .widget_nav_menu li a{ border: none; padding: 6px 7px 7px 0; } #top #main .widget_nav_menu ul:first-child > .current_page_item { left: 0; }
so with the sidebar disabled it will look the same:

Best regards,
MikeJuly 13, 2024 at 3:34 pm #1461974the_digital_manager
ParticipantI started yet another (my 5th) Enfold web project (happy customer, mainly due to the awesome support that always helps me to tweak the theme). Each time I try to achieve an individual identity for the website and this time I’d like to tweak the main menu.
Basically what I’m trying to achieve is to wrap a ‘transparant box’ around the menu with an adjustable background and font colour. The logo needs to be on the left (with another background colour of that socket) and on the right a CTA (make appointment) with another background colour in that socket (which I guess will be a custom link in the menu using the coloured button option, though the button needs to have the same hight as the rest) . This applies for devices starting from a screen size of tablets. The menu is on top of the content of the page (i.e. a full width slider or image)
See https://drive.google.com/file/d/1twinJeP4c580lVkn9jbqnAKerd4e_bvd/view?usp=sharing for an example and find the url of a live example of another site in the private content.
looking forward to realize another awesome enfold site!
-
This topic was modified 1 year, 8 months ago by
the_digital_manager.
-
This topic was modified 1 year, 8 months ago by
the_digital_manager.
July 13, 2024 at 2:41 pm #1461969In reply to: How to fix footer area?
July 13, 2024 at 7:36 am #1461959You have installed WPML now, haven’t you?
because: https://kriesi.at/support/topic/the-flag-of-languages-not-appear-in-phone-burger-menu/#post-1432364July 13, 2024 at 7:11 am #1461957In reply to: How to fix footer area?
Thank you for quick reply! Unfortunately, it did not work. I only need this for mobile version of footer (not desktop or tablet, etc.) and only the bottom area height I need to reduce as seen circled in red in screenshot available online at: https://imgur.com/a/q3mDIKX
July 13, 2024 at 7:07 am #1461956In reply to: Menu Items for mobile
Try in quick css:
@media only screen and (max-width: 1050px) { #top #header .av-main-nav > li.menu-item { display: none !important; } #top #header .av-burger-menu-main { cursor: pointer; display: block !important; } }July 12, 2024 at 5:31 pm #1461944In reply to: Ajax Portfolio Grid equal height
Also, is it possible to align the text in the middle vertically, so there is equal space on top and bottom for all the Portfolio Item Titles regardless of their length?
July 12, 2024 at 5:07 pm #1461939In reply to: TABS stopped working correctly on all my pages
Thanks, yes you can close the topic.
FYI: I tried disabling both compression options (CSS, and Javascript),
and in my situation, disabling the Javascript compression did the job.
Compression of CSS is still on in my website.July 12, 2024 at 4:38 pm #1461938In reply to: How to fix footer area?
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#footer .av_one_third > section { margin: 0; } #top #footer { padding-bottom: 15px; }Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeJuly 12, 2024 at 3:47 pm #1461928In reply to: TABS stopped working correctly on all my pages
Hi,
Great, I’m glad that we 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,
RikardJuly 12, 2024 at 3:20 pm #1461926In reply to: YouTube background video not looping
This reply has been marked as private.July 12, 2024 at 12:27 pm #1461922In reply to: Show Enfold Menu in Blank Template
This reply has been marked as private.July 12, 2024 at 11:23 am #1461916In reply to: Header appear on scroll – enable only on home page
Hi,
1. Please try this instead:
@media only screen and (max-width:767px) { .responsive .home #wrap_all #header { opacity: 1; position: fixed !important; top: 0 !important; padding-bottom: 20px !important; } .responsive .home #wrap_all #header.header_color.av_header_transparency { opacity: 0; } }2. Please try this to align the social media icons to the right:
@media only screen and (max-width: 767px) { .responsive #header .social_bookmarks { text-align: right; } }Best regards,
RikardJuly 12, 2024 at 10:47 am #1461907In reply to: How to fix footer area?
I’m also having issues with height footer area (mobile version only, not desktop) for my website: https://layarestaurant.com/
How can I reduce the bottom section of footer (below text line “CALI RESIDENTS | ACCESSIBILITY” so it’s the same space height as top portion of footer (area above “RESERVATIONS BOTTOM”). I’m trying to keep footer slim as possible. Please advise!! Any help is greatly appreciated!!
July 12, 2024 at 10:07 am #1461904Topic: TABS stopped working correctly on all my pages
in forum Enfoldardito
ParticipantI use the Enfold TABs element frequently on multiple pages of my website.
Recently the TABS stopped displaying correcly, all over my site.
Currently, the first tab is shown, with tab title above it, and all other tabs are shown below the tab content.
None of the tabs reacts to clicking.Example: test page with blank template
July 12, 2024 at 8:55 am #1461902In reply to: Header appear on scroll – enable only on home page
Hi,
i’ve added the link in the private section.
As you can see, the social icons are centered instead of being top-right.
Thanks“LINK HOME PAGE”: here it works correctly, but i want the code to work only on this page, and not on the other pages
“LINK OTHER PAGE”: i want the header in the other pages to be static, instead of appearing only after scrollingJuly 12, 2024 at 6:46 am #1461893In reply to: Top banners gone after Enfold 6.0
Hi,
Thank you for the update.
The update should fix the banner, but we are not sure about the tabs. Try adding this css code to display the initial tab on load.
#top div div.product .woocommerce-tabs #tab-description { display: block; }Best regards,
Ismael -
This topic was modified 1 year, 8 months ago by
-
AuthorSearch Results
Viewing 30 results - 4,291 through 4,320 (of 142,855 total)
-
Search Results
-
Is it possible to reduce the font size on mobile devices only? We are satisfied with the font size in desktop devices, but some text is partially cut off in the mobile view. Thank you.
I use the Enfold TABs element frequently on multiple pages of my website.
Recently the TABS stopped displaying correcly, all over my site.
Currently, the first tab is shown, with tab title above it, and all other tabs are shown below the tab content.
None of the tabs reacts to clicking.Example: test page with blank template

