Forum Replies Created
-
AuthorPosts
-
Hey Tina,
Try this css:@media only screen and (max-width: 767.5px) { .responsive #top #header_main .logo img { height: 80px !important; max-height: 80px !important; } }
After applying please clear your browser cache and check.
Best regards,
MikeHey jaimemerz,
For mobile, this css will make your buger menu white before scroll and black when the menu opens, then gray after scroll and gray when open. It will also show your white logo befor scroll, and the black one after scroll. It will also change the special heading line height so it is not behind the burger menu & logo.@media only screen and (max-width: 479px) { #top #wrap_all .av-special-heading.av-mayes0t2-0bf965b2b1bd5112e17bb591eb31930e .av-special-heading-tag { line-height: 35px; } #top .av_header_transparency .av-hamburger-inner,#top .av_header_transparency .av-hamburger-inner::before, #top .av_header_transparency .av-hamburger-inner::after { background-color: #fff !important; } #top .av_header_transparency .is-active .av-hamburger-inner,#top .av_header_transparency .is-active .av-hamburger-inner::before, #top .av_header_transparency .is-active .av-hamburger-inner::after { background-color: #000 !important; } .responsive.html_mobile_menu_tablet #top .av_header_transparency .logo img.alternate { display: block !important; } .responsive.html_mobile_menu_tablet #top .av_header_transparency.av_alternate_logo_active .logo a > img { opacity: 0 !important; } }
After applying the css, clear your browser cache & check.
Best regards,
MikeHi,
Please note that the “av_textblock_section” is a section that wraps the “avia_textblock” div that holds the actual text content. Several other elements also wrap the content div in a section, I’m not sure what effect changing this text section into a div would have, but you could try this javascript in your child theme function.phpfunction custom_script() { ?> <script> document.addEventListener("DOMContentLoaded", function () { document.querySelectorAll('section.av_textblock_section').forEach(function (section) { const textblock = section.querySelector('.avia_textblock'); if (textblock && textblock.parentElement === section) { const newDiv = document.createElement('div'); for (let attr of section.attributes) { newDiv.setAttribute(attr.name, attr.value); } while (section.firstChild) { newDiv.appendChild(section.firstChild); } section.parentNode.replaceChild(newDiv, section); } }); }); </script> <?php } add_action( 'wp_footer', 'custom_script', 99 );
If you would like to request this feature the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.
Best regards,
MikeHi,
Please note that your page is in maintenance mode so we can not see it without logging in, but based on the photography demo, the two buttons “view portfolio and get in touch” are in the slider:
To edit the button text, first click the slider in the backend to edit, and then click the slide to edit:
then go to the Advanced tab Link Settings and edit the Button Label:
Please note that while you have a valid license for the theme, which is for life, support on the forum is different, when you purchase the theme, you also get six months of support with your purchase code, but your support expired 2016-03-02 so for further support please try going to your Theme Forest account and renew your support and then register your new support purchase code and log in to the support forum and open a new thread. Please note that using the contact form is not appropriate for support questions.Best regards,
MikeHi,
The Read More tag will only work in the WP editor, not in the ALB, the ALB was intended for pages.
To add a slider to the top of a WP editor post, in the Block Editor, click on the “Classic” block above your post:
then click on the Shortcode Wand Tool to show the elements and choose the slider:
you will be prompted with the element builder, when you save you will see the shortcode:
Then save the post, on the frontend the slider will show below the featured image:
and on the blog page with the Blog Posts element:
Best regards,
MikeSeptember 27, 2025 at 12:40 pm in reply to: menu not linked child pages should be marked in the menu #1489613September 26, 2025 at 3:20 pm in reply to: Elements not loadng on page load – mobile devices #1489601Hi,
Glad to hear that you have isolated the behavior, we will leave this thread open until you let us know.Best regards,
MikeHi,
Yes, I used the mailchimp API in the theme settings under newsletter and then used the mailchimp element in the ALB.
In the mailchimp account I used the date field.Best regards,
MikeHi,
Thanks for shairing your site @dondela, it looks good, did you use Guenni007’s snippet, or is this the plugin out-of-the-box?Best regards,
MikeHey Valerie,
Try this CSS in your Enfold > Quick CSS:.inner_sidebar .widget_media_image { text-align: center; }
After adding, clear your browser cache and check.
Best regards,
MikeHey limedrop,
See this post and change the page IDs and logo URLs to suit.Best regards,
MikeHi,
Glad to hear that you have this sorted out, 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 Guenni007 could help, thank you Guenni007, 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 BlewWeb,
You could download the icon here and upload it to your Enfold Theme Options ▸ Import/Export ▸ SVG Iconset and Iconfont Manager
Then add this snippet to your child theme function.php file or if you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
then add this code and save.function avia_add_custom_icon($icons) { $icons['bluesky'] = array( 'font' =>'fontello', 'icon' => 'ue800'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); function avia_add_custom_social_icon($icons) { $icons['BlueSky'] = 'bluesky'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1); add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1); function avia_add_social_share_link_arguments($args){ $bluesky = array('bluesky' => array("encode"=>true, "encode_urls"=>false, "pattern" => "https://bluesky.com/", 'label' => __("Share on BlueSky",'avia_framework'))); $args = array_merge($bluesky, $args); return $args; }
Then add this css to your Enfold Theme Options ▸ Quick CSS
#top #wrap_all .av-social-link-bluesky:hover a { color: #fff; background-color: #1185FE; }
Then choose the icon in your Enfold Theme Options ▸ Your Social Profiles
You can also vote for this feature here.Best regards,
MikeHey mnydish,
Your css above sets the font size to 60px, to adjust this for mobile, try adding this css:@media only screen and (max-width: 767px) { .avia-content-slider .slide-entry-title { font-size: 40px; } }
adjust to suit, after applying the css, clear your browser cache.
Best regards,
MikeSeptember 20, 2025 at 8:15 pm in reply to: Elements not loadng on page load – mobile devices #1489421Hi,
We will leave this open to hear back from you, let us know if disabling WP Rocket solves.
WP Rocket is monitoring the user interaction, so you can’t exclude it.
WP Rocket use to have a doc on their site that listed different themes and the recommended exclusions for them, including Enfold, but my link to it doesn’t work anymore and I can’t find where they moved it to. Nonetheless the first step is to isolate the error, if disabling WP Rocket doen’t help, perhaps your CDN is contributing to this?Best regards,
MikeSeptember 19, 2025 at 3:35 am in reply to: ‘How to make it possible for a user to edit a cetrain page or post? #1489379Hey oburlin,
To do this you would need to add the person as a new user to your site, if they are going to edit a page or post that you created, they need to have the role of “Editor”, please be careful and make sure that you trust them as they could change your whole site. If you want them to only edit pages or posts that they create, they would have the role of “Author”.
Please read this for more info: https://learn.wordpress.org/lesson-plan/user-management/Best regards,
MikeHi,
Glad Rikard could 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,
Thanks for the login, it looks like I made an error when I pasted the code above from my test site, I updated your site and the snippet above and it’s now working. Please check. Sorry for the confusion.Best regards,
MikeSeptember 18, 2025 at 11:28 am in reply to: Elements not loadng on page load – mobile devices #1489352Hi,
You could try that, but typically lazyload waits for user interaction before loading the content / element, this may not be desirable on some devices like iPhone, but give it a try.Best regards,
MikeHi,
I could not login, seems the password is not correct please check. It looks like you have a comma after the last image URL:
please remove, the last image URL should not end with a comma, like the example code above:
If this doesn’t help, please update the password so we can check.Best regards,
Mike -
AuthorPosts