Forum Replies Created

Viewing 30 posts - 21,151 through 21,180 (of 34,221 total)
  • Author
    Posts
  • in reply to: Blockquote Text Too Large In Classic Editor #1090464

    Hi,
    Sorry for the late reply, I tried a few different tricks but they didn’t work because in the editor when the page is opened it is treated as an iframe, which means you can’t adjust the css in the DOM.
    So your last hope is to manually change the file: /enfold/config-gutenberg/css/avia-gutenberg-editor.css
    on about lines 172-180 you will find:

    	blockquote{
    	border-left-style:solid;
    	border-left-width:7px;
    	padding-left:20px;
    	margin-bottom:1em;
    	margin-right:1em;
    	font-size: 1.235em;
        line-height: 1.5em;
    	}

    change the font-size to 1em;
    then save and clear your browser cache.

    Best regards,
    Mike

    in reply to: Enfold PSD or Adobe XD files #1090459

    Hey HITFighter,
    Sorry for the late reply, the PSD files are for the old default demo, because the demo didn’t include most of the images. Since 2017 the demos include royalty free images and the demos were created with the Advanced Layout Builder in the theme, so no PSD’s were created, nor is there a reason to create them.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Problem displaying shop page #1090449

    Hi,
    Sorry for the late reply, and thank you for the screenshots.
    So to review, on a different server everything was fine, on the new server the “no products found” warning is showing, plus other customizations are not working.

    I believe this is because when the site was moved and re-saved the automatic generated clases changed, for the “no products found” warning it depends on “.avia-builder-el-5” which is a automatic class, which could change if any elements are moved on the page and then re-saved.

    I could not login to check this, please re-new the login so I can check.

    If any other css or scripts depend on auto classes like “.avia-builder-el-5” and they don’t work, this would explain it.

    BTW, I also see that you are getting 404’s on your site because the google map iframes in your footer doesn’t seem to include the API key You might want to look at that :)

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, and thank you for the screenshot. I’m using Windows 10 also, but I don’t see the second scrollbar in Chrome, but I do see it in Firefox.
    I corrected the issue by replacing this css in your Quick CSS:

    html.responsive, .responsive body {
    overflow-x: hidden;
    overflow-y: overlay;
    }

    with this:

    html.responsive, .responsive body {
        overflow-x: visible !important;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I took a look at your site and I believe the reason your logo is not shrinking on scroll is because of these custom css:

    #header.header-scrolled-full{
    height:170px!important;
    }
    #header.header-scrolled-full #header_main_alternate{ margin-top:60px!important; } 

    notice how they are keeping the header size large on header scrolled.
    I assume that you wanted this css for a different reason. I recommend removing all of your custom css and clear your cache to see if this fixes your header, then add your css back a little at a time to find all of the css that doesn’t conflict with the header.
    Then we can try to solve the remaining issue without out effecting the header.
    As I try to read back through your posts it seems that the header not shrinking is fairly new, so we should be able to get back to it working easily.
    I also assume there was no new plugins added recently.

    Best regards,
    Mike

    in reply to: Always show random posts "everywhere" #1090436

    Hi,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    add_filter('avia_post_slide_query','avia_order_by_random', 10, 2);
    function avia_order_by_random($query, $params)
    {
    $query['orderby'] = 'title';
    $query['order'] = 'rand';
    
    $terms = explode(',', $params['categories']);
    if (!empty($terms) && in_array(1, $terms)) 
    {
        $query['orderby'] = 'date';
    }
    return $query;
    }

    Best regards,
    Mike

    in reply to: Various Warnings and Errors #1090434

    Hi,
    Thank you, we will close this now, but feel free to open new topics for anything we can assist with.
    Have a great day!

    Best regards,
    Mike

    in reply to: Blog Style #1090433

    Hey BlutVampir,
    Sorry for the late reply, the blog styles are defined in the \enfold\config-templatebuilder\avia-shortcodes\blog\blog.php starting about line 99.
    I didn’t find any tutorials or documentation to explain how you could add your own, but perhaps you could model the ones already there.
    I assume that you already work with php and javascript, and have your favorite editor, but I would share that the “open folder” option in Visual Studio Code allows you to open all of the theme files at once and then the “find in files” allows you to search all of the files at once. This makes it easier to trace the functions across the files.

    Best regards,
    Mike

    in reply to: Various Warnings and Errors #1090420

    Hey Michaela,
    Sorry for the late reply, I took a look at the W3C validator, and found the issues to be a misunderstanding of the validator, for example, the first 6 say that we don’t need to use the type attribute for our scripts, but this has been standard practice for a very long time, so we choose to do this. Then it says we should not use “roles” but for the same reason above we do.
    Then for most of the rest the validator is not reading our builder shortcode correctly, it thinks that it is reading pure html which it is not.
    We have had these misunderstandings brought up many times, and the dev team has considered them. Our dev team is in the middle of a complete rewrite to help move the theme forward for the future. For now we ask for your patience while we do this, and your understanding that the validator doesn’t always read our shortcode and scripts correctly.
    Thank you.

    Best regards,
    Mike

    in reply to: Mobile Issues for Icon List #1090410

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) {
     .responsive #top #wrap_all .flex_column.avia-builder-el-18,.responsive #top #wrap_all .flex_column.avia-builder-el-20,.responsive #top #wrap_all .flex_column.avia-builder-el-22 {
        margin-bottom: 0px !important; 
    }
    #top .avia-builder-el-19 .av-iconlist-small .iconlist_content_wrap,#top .avia-builder-el-21 .av-iconlist-small  .iconlist_content_wrap,#top .avia-builder-el-23 .av-iconlist-small .iconlist_content_wrap {
        min-height: 24px !important; 
    }
    }

    expected results:
    2019-04-13-120222
    After you add the css, be sure to clear your browser cache.

    Best regards,
    Mike

    in reply to: Masonry hover effect – change on specific page #1090401

    Hi,
    I couldn’t see the image you linked to on the tinypic site, but I think I understood. I removed the red on-hover overlay and ensured the black overlay was restored.
    Actually, I didn’t “remove” the css I just “commented it out” should you ever want to see it again, it’s in your style.css in your child theme.
    So Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Glad Günter was able to help, and yes the fix will be in the update, shall we close this then?

    Best regards,
    Mike

    in reply to: scrolling not jumping #1090394

    Hi,
    I took a look and the hover over the crosses seems a lot better now, but as you pointed out, just a little off. I see that you are using the columns as the link, instead of the cross image. I would use the images as the link, but I assume that you don’t want to hover background for the images or the green circle, so this should remove it:

    #av_section_1 .kreuz_361 a:hover .image-overlay,#av_section_1 .kreuz_manufaktur a:hover .image-overlay {
        background: transparent !important; 
    opacity: 0 !important;
    }
    

    Let us know if this helps. When you try the 1/1 version, I had a after thought that you might need to add display: inline-block to your css to line the two images up, but we’ll know more when you try.
    One question, the two crosses are not in a line with the “moebel” text in the center, is this meant to be a straight line across?

    Best regards,
    Mike

    in reply to: What licence in Theme Forest is for what website? #1090374

    Hi,
    Thank you, we will leave this open to hear back from you.

    Best regards,
    Mike

    in reply to: Header background color not displayed #1090373

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #header .av-main-nav > li ul li:hover > a .avia-menu-text, #top #header .av-main-nav > li ul li:hover > a .avia-menu-subtext {
        color: #fd9351 !important; 
    }

    Best regards,
    Mike

    in reply to: Enfold upgrade #1090360

    Hi,
    Oh I see now, I assume that you are no longer in contact with the original purchaser, and they didn’t transfer the license to you.
    I recommend purchasing a license which will allow you to download the latest theme files and you will also get 6
    months of support in our forum. But our best value is to check the box to “Extend support to 12 months” for only a few dollars more.
    2019-04-13-084035

    Best regards,
    Mike

    in reply to: Enfold Strange Errors #1090355

    Hi,
    Thank you for the login, as I looked closer I found that the error is actually for Google Maps (init_embed.js:172)
    which is your map iframe:

    <iframe style="border: 0;" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2357.2121961597686!2d-3.0491942839249377!3d53.78571074941063!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b4402051c9e99%3A0x5b177425636c9e5d!2sSouth+Shore+Mot+Blackpool!5e0!3m2!1sen!2suk!4v1555064402445!5m2!1sen!2suk" width="400" height="300" frameborder="0" allowfullscreen="allowfullscreen"></iframe>

    Removing it solves, but I know you want to use it :) So as I compaire your iframe with the Google Developers Guide it looks like the map iframe requires a API Key, and I don’t see one in yours. Please read the developers guide and get a API Key and add it to your code.

    Best regards,
    Mike

    in reply to: Header background color not displayed #1090353

    Hi,
    I have taken a look at your css and have found that in your custom css you have this rule:

    #top #header_meta, #top #header_meta nav ul ul li, #top #header_meta nav ul ul a, #top #header_meta nav ul ul {
        background-color: #fd9351; 
    }

    We need to add !important; to it like this:

    #top #header_meta, #top #header_meta nav ul ul li, #top #header_meta nav ul ul a, #top #header_meta nav ul ul {
        background-color: #fd9351 !important; 
    }

    If you can’t find the css to adjust, then please just add the css above and clear your browser cache and check.

    Best regards,
    Mike

    in reply to: change the word "Mostra dettagli" in the product sheet #1090351

    Hi,
    Please check that the code you copied above doesn’t have any “curly quotes” if that doesn’t solve, then Please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Changing position of pages H1 tag #1090290

    Hi,
    To add a page title automatically above the page content, but below the title bar, first, add this shortcode to your functions.php

    function page_title_sc( ){
    	return '<h1 class="container">'. get_the_title() . '</h1>';
    }
    add_shortcode( 'page_title', 'page_title_sc' );

    Then edit: \enfold\template-builder.php on lines 100-102, look for:

    	$content = apply_filters('the_content', $content);
    	$content = apply_filters('avf_template_builder_content', $content);
    	echo $content;

    and change to:

    	$content = apply_filters('the_content', $content);
    	$content = apply_filters('avf_template_builder_content', $content);
    	echo do_shortcode("[page_title]");
    	echo $content;

    This is the results:
    2019-04-13-011605

    Best regards,
    Mike

    in reply to: Enfold Strange Errors #1090267

    Hey codecreative,
    I took a look at your 404’s and see they are coming from:

    https://lh3.googleusercontent.com/a-/s48-c/AAuE7mC9FnMeFkj8hLf6v5P84ynEnq4ZD_X-7zHOOoPO

    This seems to be a photo from Google Drive, or perhaps a file.
    Have you linked any assets from your Google Drive on your site?
    If you can’t find it please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Sticky menu on mobile #1090256

    Hey Wouter,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all #header {
        position: fixed !important; 
      }
    }

    Best regards,
    Mike

    in reply to: Sidebar UNDER Main Content #1090253

    Hey Stephan,
    Thanks for the link, it looks as though the css for the sidebar is set to 100% wide.
    Please check your custom css for this, if this doesn’t help please include admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    Hey welderluiz,
    Please link to the page so we can see the element, please also link to the background image that you would like to use.

    Best regards,
    Mike

    in reply to: Translate theme #1090241

    Hey Sasho,
    Please see our documentation for translating and language files

    Best regards,
    Mike

    in reply to: use only breadcrumb align left #1090240

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .title_container .breadcrumb {
        right: 0px !important; 
        left: 0px !important; 
    }

    Best regards,
    Mike

    in reply to: Affirm.js code with Enfold #1090239

    Hey web6s,
    Is this script for the whole site or for one page?
    Please try testing on one page first by adding the script to a code block and use the opening and closing “script” tags.
    If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: change the word "Mostra dettagli" in the product sheet #1090238

    Hey robertoKM,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    jQuery(window).load(function(){
      jQuery( '.avia_cart_buttons' ).each(function() {
      jQuery( this ).find( 'a.button.show_details_button' ).replaceWith('Chiedi un preventivo');
      });
      });
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');
    

    Best regards,
    Mike

    in reply to: Enfold upgrade #1090236

    Hi,

    Please try updating Enfold to v4.5.5, your version 1.3.1 is quite old and may not be compatible with PHP v7

    Best regards,
    Mike

Viewing 30 posts - 21,151 through 21,180 (of 34,221 total)