Forum Replies Created

Viewing 30 posts - 9,751 through 9,780 (of 35,061 total)
  • Author
    Posts
  • in reply to: define a headline with a different font #1375903

    Hi,
    For green font instead of a green background color change to this:

    .av-special-heading.lime-background h2.av-special-heading-tag {
    color: #719430;
    font-family: 'Caveat', cursive;
    }

    Best regards,
    Mike

    in reply to: on phone no header, hamburger menu deeper #1375901

    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: Yoast SEO Problem mit Kriesi Theme #1375900

    Hi,
    Glad to try to help, but I didn’t see any difference when enabling/disabling yoast.
    We will leave this open while you double check.
    Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: define a headline with a different font #1375891

    Hi,
    You could add a custom class to your H2 element such as caveat-font and use this css:

    #top #wrap_all .all_colors .caveat-font h2 {
    	 font-family: 'Caveat', cursive;
    }
    

    Or you could add the font to the custom color class that you are using, but that was for a H1:

    .av-special-heading.turquoise-background h1.av-special-heading-tag {
    background-color: #24727c;
    font-family: 'Caveat', cursive;
    }

    If it is for a special heading that is an H2 then try this:

    .av-special-heading.turquoise-background h2.av-special-heading-tag {
    background-color: #24727c;
    font-family: 'Caveat', cursive;
    }

    Best regards,
    Mike

    in reply to: Yoast SEO Problem mit Kriesi Theme #1375888

    Hi,
    Thanks for the login to your site, when I checked the yoast plugin was active and I didn’t notice anything slow in your site loading so I ran two tests linked below.
    with Yoast disabled it had First View in 3.907s
    with Yoast abled it had First View in 3.978s
    So no real difference, your slowest items were images that you could probably compress.
    I tested your largest image on tinyjpg.com and it was able to make it 48% smaller:
    2022-12-11_009.jpeg
    so perhaps this would help you overall.

    Best regards,
    Mike

    in reply to: Poor layout architect handling when scrolling #1375885

    Hi,
    Thanks for linking to the duplicate thread for this, we will close this one since there is no need for duplicates.
    Thank you for your understanding and for using Enfold.

    Best regards,
    Mike

    in reply to: define a headline with a different font #1375884

    Hey Nic_007,
    Do you want all H2 to be this font?
    You can set this in Enfold Theme Options ▸ Advanced Styling choose the H2 element from the dropdown and choose the font.
    2022-12-11_008.jpeg

    Best regards,
    Mike

    Hi,
    Please explain what you are trying to do when you see this error so we can test and include an admin login in the Private Content area.

    Best regards,
    Mike

    in reply to: Headline mit Hintergrundfarbe auf bestimmten Seiten #1375881

    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: Blog Images #1375880

    Hi,
    Thank you for your explanation, featured images are picked in the featured image sidebar option, they are not automatically picked.
    2022-12-11_007.jpeg
    If you want to use an certain image as your featured image when you don’t choose one try the Default featured image plugin, I have tested it and it worked.
    It creates an option in WordPress ▸ Dashboard ▸ Settings ▸ Media, select the image and save the settings at the bottom of the page.

    Best regards,
    Mike

    in reply to: Headline mit Hintergrundfarbe auf bestimmten Seiten #1375875

    Hi,
    To add a custom class to almost any element in Enfold open the element and look in the Advanced tab and then in the Developer Settings and you will see the Custom Class field:
    2022-12-11_006.jpeg
    To make the background color just a little bit larger than the text I changed the css to this:

    .av-special-heading.turquoise-background h1.av-special-heading-tag {
       background-color: #24727c;
        display: inline;
        padding: 0 20px;
        margin-left: -20px;	
    }
    .av-special-heading.lime-background h1.av-special-heading-tag {
        background-color: #719430;
        display: inline;
        padding: 0 20px;
        margin-left: -20px;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Logos background getting grey after adding link #1375873

    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

    Hey audreyweddingsalon,
    Thanks for the explanation and the link to your page, to change the product image link to the full size image try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function replace_product_image_with_full_size_image() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
        var lastOne = $('.single-product .woocommerce-product-gallery a').attr('data-srcset').split(',').pop().trim().split(' ')[0];
        $(".single-product .woocommerce-product-gallery a").attr('href', lastOne);
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'replace_product_image_with_full_size_image');

    It gets the last image in the data-srcset which is the original full size image.

    Best regards,
    Mike

    in reply to: Logos background getting grey after adding link #1375869

    Hey eddyvdt,
    Thank you for the link to your site, please try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .main_color .avia-logo-element-container.avia-content-slider .slide-image {
    	 background: transparent;
    }

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

    Best regards,
    Mike

    Hey Creatifcator,
    Thanks for the link to your page, I compared your site with the Google font test page here
    and it looks the same to me, please see the screenshot in the Private Content area.
    Perhaps try clearing your browser cache following these steps for Safari and note step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: Slide show text transformation #1375866

    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: Headline mit Hintergrundfarbe auf bestimmten Seiten #1375865

    Hi,
    Thanks for the login, I added this css to your Quick CSS:

    .av-special-heading.turquoise-background h1.av-special-heading-tag {
    background-color: #24727c;	
    }
    .av-special-heading.lime-background h1.av-special-heading-tag {
    background-color: #719430;	
    }

    Then for the special heading at the top of your homepage I added the custom class turquoise-background
    now it shows a turquoise background color.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Header etwas weniger transparent #1375861

    Hi,
    I will follow up in this thread

    Best regards,
    Mike

    in reply to: Image Sizes #1375860

    Hi,
    Chrisxx1982 thanks your your patience and your screenshot: https://imgbb.com/47sQ41L
    I see that you said: The problem first appeared when I regenerated the thumbnails. is this because you changed the size of some of your images?
    I recommend following audreyweddingsalon advice and first create 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.
    Then for your issue I recommend installing the plugin Simple Image Sizes as it will give you an easy way to set certain images to no crop:
    2022-12-11_002.jpeg
    afterward you will want to use a regenerate thumbnails plugin.
    The built-in thumbnail regeneration in the Simple Image Sizes plugin often fails for me, this is why I recommend a different plugin to regenerate thumbnails.
    Please note there are several woocommerce & shop image sizes so try to change the ones you want to.

    Best regards,
    Mike

    in reply to: Headline mit Hintergrundfarbe auf bestimmten Seiten #1375857

    Hey Nic_007,
    To put a different background color behind different headlines on your site would best be done by adding a custom class to the headline for each color.
    So please tell us which colors you want to use and link to two different headlines and I will explain how to do this.
    If you include an admin login I could also demonstrate on one if you find that easier.
    Is this a duplicate request to this thread? If so lets only use one of these threads otherwise it will get confusing to talk about the same subject in two threads.

    Best regards,
    Mike

    in reply to: Header etwas weniger transparent #1375855

    Hi,
    I’m not sure which headline you want to look like it is highlighted, please include a screenshot and paste the image URL in your post and a direct link to the page.
    Will this be for just one headline or all headlines?

    Best regards,
    Mike

    in reply to: Problems with the automatic backup again! ***urgent*** #1375834

    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

    Hi,
    The anchor ID is what you choose it to be, I looked at your page and I see the hotspot link looks like id=”innovatieveteelten” is this what you typed in the manually link field? Please look at my screenshot above, in your case you should write #innovatieveteelten
    I assume that you want it to go to the text INNOVATIEVE TEELTEN, but around this text you have added a link with the ID like this:
    <h2 style="text-align: center;"><a href="#innovatieveteelten">Innovatieve teelten</a></h2>
    please change to this:
    <h2 style="text-align: center;" id="innovatieveteelten">Innovatieve teelten</h2>
    If you have trouble achieving this please include an admin login in the Private Content area below so we can assist.

    Best regards,
    Mike

    in reply to: Mobile Optimization Grid Row Tablet Landscape #1375831

    Hi,
    Thanks for the feedback, on your homepage I found 3 grid row sections that match this layout so I added the custom class custom-tablet-padding to the cell with text in each of these and then I changed the css to this:

    @media only screen and (max-width: 1085px) and (orientation: landscape) {
    .responsive #top #wrap_all #main .av-layout-grid-container .flex_cell.custom-tablet-padding {
        padding: 0 50px 50px 50px !important;
    }
    }
    

    and this seems to be working for all three, please clear your browser cache and check.
    Please note that testing with iPads & 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.
    Also note that your Kontakt has extra padding on the inner column, so if you want it to look like the other two sections please remove this extra padding.
    Now you should be able to add the custom class custom-tablet-padding to grid row cells that are similar on other pages for the same effect.

    Best regards,
    Mike

    Hi,
    To have the burger menu icon white with the header is transparent and have it change to dark gray when the burger menu is opened please try this css:

    @media only screen and (max-width: 989px) { 
      .html_mobile_menu_tablet .header_color.av_header_transparency div .av-hamburger-inner, 
      .html_mobile_menu_tablet .header_color.av_header_transparency div .av-hamburger-inner::before, 
      .html_mobile_menu_tablet .header_color.av_header_transparency div .av-hamburger-inner::after {
      	background-color: #fff !important;
      }
      .html_av-overlay-side.av-burger-overlay-active #top .header_color.av_header_transparency div .av-hamburger-inner, 
      .html_av-overlay-side.av-burger-overlay-active #top .header_color.av_header_transparency div .av-hamburger-inner::before, 
      .html_av-overlay-side.av-burger-overlay-active #top .header_color.av_header_transparency div .av-hamburger-inner::after {
      	background-color: #404040 !important;
      }
    }
    

    After applying the css, please clear your browser cache and check.
    If you have trouble try clearing your server cache or add the css to the WordPress ▸ Customize ▸ Additional CSS field

    Best regards,
    Mike

    in reply to: Will all demos work with Woo #1375815

    Hey steph delagarza,
    Thanks for your question all of our demos would work with woocommerce in the same way.
    Theme Forest is the only place that sells and licenses our theme, due to our contract with them we can not sell licenses directly.
    If you can not login to the previous designer’s Theme Forest account then you will need to purchase a new license, Envato will not transfer licenses.
    The good news is when you buy a new license you will get 6 months support to our forum, but please note that for a little more you could get a full year of support:
    extend_support_to_12_months.png

    Best regards,
    Mike

    in reply to: Remove Pencil Icon From Blog Post Titles? #1375810

    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: Bildhöhe verändern | Farbsektion Top Enfold Restaurant #1375808

    Hey Nic_007,
    If you mean the top image on the page, go to your color section and increase the minimum height:
    2022-12-10_022.jpeg

    Best regards,
    Mike

    in reply to: Remove Pencil Icon From Blog Post Titles? #1375807

    Hey Stephen,
    Thanks for the link to your site, to remove the pencil icon from the gray square please try this css:

    #top.blog .post-entry .blog-meta .small-preview .iconfont:before {
    	display: none;
    }

    To remove the pencil icon and the gray square try this css:

    #top.blog .post-entry .blog-meta {
    	display: none;
    }

    To pick a different icon to show in the gray box go to the icon element and hover over the icon to want to use to see the Charcode
    2022-12-10_020.jpeg
    and then use it in this css:

    #top.blog .post-entry .blog-meta .small-preview .iconfont:before {
    	content: "\e82a";
    }
    

    2022-12-10_021.jpeg

    Best regards,
    Mike

    in reply to: Display images in search #1375806

    Hi,
    To place the images on the left side of the tables please try this css:

    .template-search .post-entry .entry-content-wrapper {
    	display: flex;
    }
    .template-search .post-entry .entry-content-wrapper .entry-content-header {
    	display: flex;
    	flex-direction: column-reverse;
        align-items: center;
        justify-content: flex-end;
        width: 50%;
    }
    .template-search .post-entry .entry-content-wrapper .entry-content {
    	display: flex;
    	width: 50%;
    }

    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

Viewing 30 posts - 9,751 through 9,780 (of 35,061 total)