Forum Replies Created

Viewing 30 posts - 7,591 through 7,620 (of 34,913 total)
  • Author
    Posts
  • in reply to: Footer in custom templates #1406463

    Hi,
    Glad Guenni007 could help, thank you Guenni007.

    Best regards,
    Mike

    in reply to: font color for a portfolio grid #1406462

    Hi,
    To avoid the date try this css:

    #top .avia-content-slider .slide-meta time {
        display: none;
    }

    For your 3 other pages css would probably be the best solution, let us know if you need help adjusting the css above for your other 3 pages.

    Best regards,
    Mike

    in reply to: Admin-Seite wählt Hauptmenü nicht an #1406461

    Hi,
    Thanks for the feedback, try this css:

    #top.single-post .wp-caption-text {
    	font-style: normal;
    	font-family: 'montserrat';
    	font-size: 14.95px;
    	font-weight: 400;
    	color: #383838;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: CSS Dyanmic #1406441

    Hi,
    Glad to hear this helped, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Blog post text alignment is off in mobile view #1406439

    Hi,
    Thanks for the feedback, when I check now the text alignment is correct now, please see the screenshot in the Private Content area.
    Try clearing your browser cache.
    Please note that 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.

    Best regards,
    Mike

    in reply to: Background behind Tag #1406438

    Hi,
    Yes, those are the columns that I’m referring to, they have a background image that is causing the white behind the text.

    Best regards,
    Mike

    in reply to: font color for a portfolio grid #1406387

    Hey Tilman,
    Do you mean one portfolio grid item, or one category in the portfolio grid, or one portfolio grid on your site where many are used?
    Please link directly to the page so we can examine.

    Best regards,
    Mike

    in reply to: Remove Blog dates from entire website #1406386

    Hey bemodesign,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .html_elegant-blog #top .post-entry .post-meta-infos, 
    .html_elegant-blog .avia-content-slider .slide-meta,
    #top .news-time {
    	display: none;
    }

    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,
    Mike

    in reply to: Mobile Menu Not working #1406385

    Hi,
    We should wait until you can update the theme in your other thread as any adjustments in this thread may need to be changed after you update.

    Best regards,
    Mike

    Hi,
    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,
    Mike

    in reply to: H3 tags in the footer #1406383

    Hi,
    Unfortunately, there are too many different reasons this isn’t working for you, we would just be guessing, try using the Temporary Login Without Password plugin.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.
    7. Please note that we will not receive emails at this mailbox.

    When your issue is fixed, you can always remove the plugin!

    Best regards,
    Mike

    in reply to: Enfold wont work after update #1406382

    Hi,
    I recommend first creating a staging site to test on, most cPanel webhosts have a staging site option, some in the dashboard:
    staging-1.jpeg
    Others add the option in the Softaculous WordPress Management
    2022-12-11_001.jpeg
    There may be other staging site options in different cPanel servers, these are the two that I have seen, try asking your webhost if you don’t see these options.

    Best regards,
    Mike

    in reply to: Activate ALB for pages by default #1406381

    Hi,
    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

    in reply to: Background behind Tag #1406366

    Hi,
    Thanks for the link to your site, I see on your homepage you have a background image that is white with a off-white drawing in it. The two columns also have this same image add to their background but due to the size they look like a white background behind the text, try removing the background image from the two columns and you will see the body background image behind the text.
    If you don’t understand please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Activate ALB for pages by default #1406365

    Hey BeeCee,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function trigger_alb_on_load_for_page(){
    	?>
    	<script>
    	window.addEventListener('DOMContentLoaded', function() {
    	(function($){
    		if ($('body.wp-admin.post-new-php.post-type-page').length > 0){
    			setTimeout(function(){
    			$("#avia-builder-button").trigger('click');
    			},300);
    		}
    	})(jQuery);
        });
    	</script>
    	<?php
    }
    add_action('admin_head-post-new.php', 'trigger_alb_on_load_for_page');

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    In my test a timeout of 300 ms (less than half a second) is required for the ALB button to be available, so if this doesn’t work for you try increasing the “300” to a higher number.
    Also ensure you are not deferring jQuery with a caching plugin or in theme options, such as Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer

    Best regards,
    Mike

    in reply to: H3 tags in the footer #1406361

    Hi,
    Thanks Guenni007
    If this doesn’t help then include an admin login in the Private Content area so we can examine your settings.

    Best regards,
    Mike

    in reply to: Blog post text alignment is off in mobile view #1406360

    Hi,
    It looks like you are referring to the justified text alignment, try checking your customized css for this rule:

    #top .fullsize .template-blog .post .entry-content-wrapper {
        text-align: justify;
        font-size: 1.15em;
        line-height: 1.7em;
        max-width: 800px;
        margin: 0 auto;
        overflow: visible
    }

    and change justify to left, or try adding this css to your Quick CSS:

    #top #main .fullsize .template-blog .post .entry-content-wrapper {
        text-align: left;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Heater overlays Burger menu #1406332

    Hi,
    To remove the background color for the mobile menu icon, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #header #avia-menu > li.menu-item-avia-special:hover > a {
        background: transparent !important;
    }

    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,
    Mike

    in reply to: show color content (code block) in fullwight size #1406331

    Hi,
    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,
    Mike

    Hi,
    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,
    Mike

    in reply to: Blog post text alignment is off in mobile view #1406329

    Hey pimroll,
    I checked with my Android device and I didn’t spot any alignment issues, please see the screenshot in the Private Content area.
    Please be more specific and perhaps a screenshot would help.

    Best regards,
    Mike

    in reply to: Admin-Seite wählt Hauptmenü nicht an #1406328

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.single-post .wp-caption-text {
    	font-style: normal;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: H3 tags in the footer #1406326

    Hi,
    Your jQuery seems to be deferred, please check your caching plugins and try disabling your CDN and disable:
    Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer
    If this doesn’t help try this solution or include an admin login in the Private Content area for us to check.

    Best regards,
    Mike

    in reply to: Token not working & enfold child theme not working #1406325

    Hi,
    When the child theme is active it is using the core files of the parent theme, if your parent theme is v3.1 then you should update.
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    Hi,
    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,
    Mike

    in reply to: Upgrading old Enfold version #1406287

    Hey Mark,
    Thanks for your questions, Enfold v5.6 works with PHP v8+ and WordPress v6+
    When you purchase a new license you get 6 months of forum support included with an option to extend to 12 months for only about $17 more:
    Enfold_Support_1969.jpeg
    We have an exclusive contract with Theme Forest and can not sell, transfer, or update licenses directly. Theme Forest manages all licenses.
    The Avia framework is our exclusive framework for the Advanced Layout Builder, yes we are keeping it and have made many changes since v3.1, see our changelog and documentation

    Best regards,
    Mike

    in reply to: Mobile Menu Not working #1406285

    Hey darrenheld2,
    Please try disabling Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and clearing your browser cache.

    Best regards,
    Mike

    in reply to: Enfold wont work after update #1406284

    Hey darrenheld2,
    Thank you for the link to your site and the screenshot, your site is loading for me on Android, please see the screenshot in the Private Content area.
    I do see a Mixed Content error for your logo, check your logo url in the theme options to ensure you are using https
    Then try clearing your browser cache.

    Best regards,
    Mike

    in reply to: Animation in Enfold? #1406283

    Hey schwabino,
    Thanks for the link to the example site, you would need to use javascript for this animation, this site is using Velocity.js.
    Try searching for a script and adding it to a code block element.

    Best regards,
    Mike

    in reply to: Adjusting Hotspot font size #1406279

    Hey woogie07,
    Thank you for the link to your site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .av-image-hotspot .inner_tooltip p {
    	font-size: 13px;
    }

    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.
    I css your number 4 hotspot is wrapping the text in a div instead of the “p” tag, so this css won’t change that font size, perhaps you were testing?

    Best regards,
    Mike

Viewing 30 posts - 7,591 through 7,620 (of 34,913 total)