Forum Replies Created
-
AuthorPosts
-
October 30, 2021 at 11:17 pm in reply to: can't figure out how to change bolded text color in main content area #1327138
Hey Frank,
You can Enable Avia Layout Builder Debugger and copy the page shortcode.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 feedback, when I check the page for tablet 768px all of the paragraph text is: font-size: 15px, line-height: 24.75
this includes the lower 5 1/1 columns and the top 4/5 column, the only one that is different is the second text block in the top 4/5 column, the one you manually made 20px, changing the font-size also changes the line-height to 33px
Are you referring to the list items below? While they are also using font-size: 15px, line-height: 24.75
they also have a top & bottom padding of 3px which makes the line-height look more.
I’m using Chrome on Windows in dev mode, I don’t have a iPad, are you seeing this on an iPad? Can you also see this with a desktop Chrome in dev mode?Best regards,
MikeHi,
Please include an admin login in the Private Content area so I can investigate further.Best regards,
MikeHi,
That doesn’t seem correct, I believe you mean that it is an addon domain and each domain has its own directory and each directory has a .htaccess file. Did you try the code I posted? Did you confirm that your mod_headers are enabled?Best regards,
MikeHey Ronald,
Thank you for the link to your site, this demo is created as a single page site so the menu links are anchor links to the homepage, please look at the menu items and note that the custom links are only anchors like#about
so from the books page they are targetingbooks/#about
try adjusting the menu items to the full url of the homepage.Best regards,
MikeHey pamk21,
Thank you for the link to your site but I don’t think I understand, I tried creating a test page with different columns and viewed on mobile but the font size was the same for each, please adjust the test page below so I can see this error and investigate further.Best regards,
MikeHey ndszamoca,
Thank you for the link to your site but this looks like you are using the plugin Ultimate FAQ I’m not familiar with this plugin or with it’s settings, I would imagine it has a setting to disable this if you can not find it try asking the plugin author.
If they are unable to help try adding this code to the end of your functions.php file in Appearance ▸ Editor:function custom_script() { ?> <script> (function($){ $(".ewd-ufaq-faq-div").each(function(){ $(this).find(".ewd-ufaq-faq-toggle a").attr("href", "#"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');
it will remove the links from the toggles.
Best regards,
MikeHey Createve_Solutions,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:.html_av-overlay-side-classic #top .av-burger-overlay #av-burger-menu-ul li li .avia-bullet { display: none; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Glad Ismael 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 Ismael 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 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,
MikeOctober 30, 2021 at 7:31 pm in reply to: Youtube Video url is not working and Video is not showing up #1327101Hey souravghosh,
Thank you for the link to your site but I see the error “this video is unavailable”, when I test on my demo it works correctly, I believe this is due to you using an older version 4.5.1 please update to 4.8.7Best regards,
MikeOctober 30, 2021 at 7:15 pm in reply to: error log: wp-content/themes/enfold/includes/helper-assets.php on line 54 and 55 #1327100Hey hfhf,
Could you please link to your site and include admin login in the Private Content area so we can be of more assistance.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 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,
MikeHey envapk2,
Thank you for the link to your test page, you need to adjust the z-index of the right column, so add a custom class to it and in your rule add the section ID to override the current z-index, for example:#av_section_2 .avia-builder-el-11 { position: relative; z-index: 0; }
Best regards,
MikeHey emilconsor,
Try this function instead:/*Add Custom Icon to Social Media Icons*/ function avia_add_custom_icon($icons) { $icons['newspaper'] = array( 'font' =>'jom-iconfont', 'icon' => '\e915'); $icons['biene'] = array( 'font' =>'jom-iconfont', 'icon' => '\e914'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); function avia_add_custom_social_icon($icons) { $icons['Newsletter'] = 'newspaper'; $icons['Biene'] = 'biene'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
Best regards,
MikeHi,
Glad Nikko was 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,
Glad Nikko was 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,
Glad Ismael 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,
MikeOctober 30, 2021 at 6:12 pm in reply to: parallax effects – moving elements while scrolling #1327083Hi,
Glad Ismael 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,
Thank you for your patience, I took a look at your page but I’m not quite sure what your issue is because in your screenshot there are two images that are the same but stacked, I do not see this in Chrome, Firefox, or Edge on Windows 10, what I see is a large gap at the top of your page from a whitespace element.
Best regards,
MikeHey Imtheguy,
Thank you for your patience, is this added the babyluvstudio.com htaccess?
I believe you should be using mod_headers.c like this, are you sure your server is Apache and your mod_headers are enabled?<IfModule mod_headers.c> Header set Access-Control-Allow-Origin "*" </IfModule>
if mod_headers are not enabled then it won’t work, try asking your webhost if they are enabled, because if they are not the server will have to be restarted by the webhost.
Best regards,
MikeHi,
Sorry I was looking at the thread starter site, not yours. In the future please open a new thread for your questions, thank you for understanding. Thanks for the login but your WordPress ▸ Appearance ▸ Theme ▸ Editor is not showing so I could not apply the solution for the Search bar from our documentation. Please try enabling the theme editor and then adding the function to your functions.php:
add_shortcode('avia_search', 'get_search_form');
and then add the shortcode[avia_search]
to the title of a new custom menu item
then disable the search icon option in the theme at Enfold Theme Options ▸ Main Menu ▸ General ▸ Append search icon to main menuBest regards,
MikeHi,
Thanks for the feedback I have reported this to the Dev Team and will reply when I hear back from them, thank you for your patience.
For now try leaving the Custom Elements Management disabled.Best regards,
MikeOctober 29, 2021 at 2:21 pm in reply to: Rahmen um die gesamte Webseite / Border all on Website #1327010Hi,
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,
Mike -
AuthorPosts