Forum Replies Created

Viewing 30 posts - 7,291 through 7,320 (of 34,625 total)
  • Author
    Posts
  • in reply to: Add onclick to contact form #1406541

    Hi,
    Thanks for your suggestion, I have submitted this to our feature requests for the Dev Team to review.

    Best regards,
    Mike

    in reply to: Accordion, Portfolio, Heading #1406539

    Hi,
    Thanks for the test page, for #1 try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .togglecontainer.av-minimal-toggle .single_toggle {
        border-bottom: solid 1px #D3D3D3;
    }
    .togglecontainer.av-minimal-toggle .single_toggle .toggler {
        padding-left: 0;
    }
    .togglecontainer.av-minimal-toggle .single_toggle .toggle_icon {
        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.
    For #2:

    .grid-sort-container .grid-entry .inner-entry {
        box-shadow: none;
    }
    .grid-sort-container .grid-entry .grid-content {
        padding-left: 0;
    }

    For #3:

    .logo.avia-svg-logo img, .logo.avia-svg-logo svg {
    	max-width: 110px;
    }

    For #5 when I check the product images in the grid it follows the 400×495 aspect ratio and shows at 254×205, it is smaller than the 400×495 that you choose to show in the element settings because you are showing 4 columns and there is not enough room to show the images at that size since your max container width is 1200px

    Best regards,
    Mike

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

    Hi,
    Glad we were able to help, shall we close this then?

    Best regards,
    Mike

    in reply to: How to make changes in header in scrolling mode #1406490

    Hi,
    Thank you for the link to your site, when I check your logo it hangs out of the header and over the page content on desktop and mobile, please see the screenshots in the Private Content area.
    As I read your original post again you seem to be asking about the scrolling mode of the mobile header, but on mobile devices the header is not sticky or fixed by default and I don’t see any customization to make the mobile header fixed, is this what you are asking for?
    If so try this css:

    @media only screen and (max-width: 767px) { 
    .html_header_sticky.html_mobile_menu_tablet #top #wrap_all #header,
    .html_header_sticky.html_header_transparency #top #wrap_all #header,
    .html_header_sticky #top #wrap_all #header {
        position: fixed;
    }
    
    .html_header_sticky #top #header_main .container,
    .html_header_sticky #top .main_menu ul:first-child>li a {
        height: inherit !important;
        line-height: inherit !important;
    }
    .html_header_sticky #top #wrap_all #main {
        padding-top: 119px !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: page without scrolling #1406488

    Hi,
    Thanks for the feedback, when I check the page you linked to 12438 on the desktop, the page can not be scrolled as per your request, and while the footer can be seen it is because the page content is small enough that it has not been pushed down.
    But on my Android mobile device the content is longer than the height of the screen, see my screenshot in the Private Content area.
    If you want to allow scrolling on this page I recommend removing it from the mobile css.

    Best regards,
    Mike

    in reply to: Change image size in blog post #1406480

    Hey joneszelasko,
    Thank you for your question, as I understand your question you would like to change the size of your featured image in your posts to 1200 x 630,
    You can do this with this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
      $size['entry_without_sidebar'] = array('width'=>1200, 'height'=>630, 'crop' => true);
      return $size;
    }

    Then use the plugin Regenerate Thumbnails to resize the images.
    Please note that the code above sets the crop to “true” and I believe this is correct for your situation, but if not try changing it to “false” and regenerate the images again.

    Best regards,
    Mike

    in reply to: How to make changes in header in scrolling mode #1406478

    Hey landhausaustria,
    Please link to your page so we can examine it and make a recommendation.

    Best regards,
    Mike

    in reply to: page without scrolling #1406477

    Hi,
    Thank you for your patience, I changed your mobile css to this:

    @media only screen and (max-width: 768px) {
    html.responsive.html_entry_id_10706,
    html.responsive.html_entry_id_10713,
    html.responsive.html_entry_id_12154,
    html.responsive.html_entry_id_12438,
    html.responsive.html_entry_id_12020,
    .responsive #top.page-id-10706,
    .responsive #top.page-id-10713,
    .responsive #top.page-id-12154,
    .responsive #top.page-id-12438,
    .responsive #top.page-id-12020 {
    overflow: hidden;
    }
    }

    please clear your browser cache and check.

    Best regards,
    Mike

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

    Hi,
    Correct, then clear your browser cache and check.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Accordion Not Working #1406470

    Hi,
    Thanks for the login, I see that many of your accordions have extra divs with toggle IDs when you look in the “text” tab of the editor:
    Enfold_Support_1975.jpeg
    Try removing these so there is only text in these fields and Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    Hi,
    Glad to hear that you have this sorted out, this seems it would be the best solution. Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

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

    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: 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

Viewing 30 posts - 7,291 through 7,320 (of 34,625 total)