Forum Replies Created

Viewing 30 posts - 391 through 420 (of 33,009 total)
  • Author
    Posts
  • in reply to: Area above menu on mobile #1463279

    Hi,
    Try this code in your child theme functions.php file:

    function add_custom_meta_tag() {
        echo '<meta name="theme-color" content="#39ff14"/>';
    }
    add_action('wp_head', 'add_custom_meta_tag');
    

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Use of block editor goes wrong #1463278

    Hi,
    We are not able to view your screenshot as it requires a login, please upload to a screenshot service and post the link so we can view.

    Best regards,
    Mike

    in reply to: Rounded corners on all images and Products #1463277

    Hi,
    Glad that we could help, if you have any further questions please open a new thread and we will be happy to help.

    Best regards,
    Mike

    Hi,
    Have you tried setting the theme background color to black?
    You should be able to use the Advandced Styling to change the text colors.

    Best regards,
    Mike

    Hi,
    Please see this thread.

    Best regards,
    Mike

    Hi,
    Glad that we could help, if you have any further questions please open a new thread and we will be happy to help.

    Best regards,
    Mike

    Hi,
    Thanks, i added a “placeholder” image to the dynamic content image so the dynamic content will show, this is needed.
    I think that the instructions might be misleading, I will look into this further on our end, but for now always choose a placeholder image:
    Enfold Support 6439

    Best regards,
    Mike

    in reply to: Layout Tab Section #1463251

    Hi,
    You can make the inner section full width with this css:

    .responsive .av-layout-tab-inner > .container {
        max-width: 100%;
    }

    then you can add padding to the elements in the inner tab that you don’t want full width, like the text element.

    Best regards,
    Mike

    in reply to: Demodaten Importieren / Änderungen im Layout #1463238

    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: Masonry grid featured image size #1463237

    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: Masonry gallery on mobile #1463236

    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: Layout Tab Section #1463235

    Hi,
    Try adding this:

    #top .av-tab-arrow-container {
        top: -11px;
    }

    Best regards,
    Mike

    in reply to: Masonry gallery on mobile #1463233

    Hi,
    please compare this to the original:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .av-flex-cells .no_margin {
    padding-left: 15px !important;
    padding-right: 15px !important;
    }
    .responsive #top .av-masonry {
    background-color: #f5f0eb !important;
    }
    }

    Best regards,
    Mike

    in reply to: Photos very dark when uploaded #1463228

    Hi,
    Glad Guenni007 could help, thank you Guenni007, I agree that this is a color profile issue with your images and not an issue with the theme.

    Best regards,
    Mike

    in reply to: Layout Tab Section #1463227

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

    #top .av-tab-no-icon.av-tab-no-image .av-inner-tab-title {
        margin-bottom: 0;
    }

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

    Best regards,
    Mike

    in reply to: Area above menu on mobile #1463193

    Hi,
    I’m not sure as I don’t have a iPhone and this is not a option on Android. There is not a specific setting for this in the theme, but it sounds like the css above is changing it some.
    Perhaps the iPhone also adds opacity to the color, try this:

    html {
    	background-color: blue !important;
            opacity: 1 !important; 
    }

    Please note that testing with 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: Area above menu on mobile #1463191

    Hey Richard,
    I believe that you need to add the background-color to the html element which I believe shares the color with the Socket Background Color
    But if you don’t want to also change this color, try this css:

    html {
    	background-color: blue !important;
    }

    and adjust the color to suit, after applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Enfold Theme Update #1463190

    Hi,
    I’m not sure what you mean by add my website to my Google profile, please explain further, perhaps a screenshot of the Google profile page that you add the url to would help.
    Is the error code 400 shown on the Google profile page or is this in your webhost error logs?

    Best regards,
    Mike

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

    .avia_transform .av-parallax-object.active-parallax.avia_start_delayed_animation.right-to-left {
        animation: avia-rtl 0.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
        opacity: 1;
    }
    .js_active .av-parallax-object.active-parallax {
        opacity: 0;
        transition: none
    }

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

    Best regards,
    Mike

    in reply to: Masonry gallery on mobile #1463186

    Hi,
    You can remove the page ID from the css

    Best regards,
    Mike

    in reply to: Use of block editor goes wrong #1463185

    Hey plichtovav,
    Please note that your homepage is created with the Advanced Layout Builder (ALB) please use this to edit the page:
    Enfold Support 6431
    If you try to edit the page with a different editor it may cause issues. I corrected this for you so you can edit your page, please check.

    Best regards,
    Mike

    in reply to: Padding between h3 and h4 headings #1463183

    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: Masonry gallery on mobile #1463182

    Hi,
    Try adding !important; after background-color: #f5f0eb; like this:

    @media only screen and (max-width: 767px) {
      .responsive #top.page-id-21 #wrap_all .av-flex-cells .no_margin {
          padding-left: 15px !important;
          padding-right: 15px !important;
      }
      .responsive #top.page-id-21 .av-masonry {
        background-color: #f5f0eb !important;
    }
    }

    Best regards,
    Mike

    in reply to: Padding between h3 and h4 headings #1463180

    Hey Richard,
    This is margin due to this css:

    p+h1, p+h2, p+h3, p+h4, p+h5, p+h6 {
        margin-top: 1.5em;
    }

    the “p” means paragraph, so in your case please add this css:

    h3+h4 {
        margin-top: 1.5em;
    }

    Best regards,
    Mike

    in reply to: Enfold Theme Update #1463179

    Hey zdenkab,
    Thank you for the link to your site, I see that you are using v5.7 and your Envato token is unverified.
    You could try using the Envato Market Plugin and create a new Envato Token in your Theme Forest account.
    Or you could manually update and then Envato Token in your Theme Forest account.
    To manually update 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

    in reply to: Social media icons #1463177

    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: Error after upgrading to Enfold 6.0.2 #1463176

    Hi,
    When I test this on my site the only time I see and error is if I try to use a portfolio element.
    So if you want to disable the portfolio CPT you should ensure to not use a portfolio element.

    Best regards,
    Mike

    in reply to: Title and excerpt for Masonry Grid #1463170

    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: Masonry gallery on mobile #1463169

    Hi,
    On mobile I see #f5f0eb;
    try clear your browser cache.
    If you mean desktop add this css:

     #top.page-id-21 .av-masonry {
        background-color: #f5f0eb;
    }

    Best regards,
    Mike

    in reply to: Social media icons #1463168

    Hi,
    Please use margin like this:

    #top .social_bookmarks li {
        margin-right: 10px;
    }

    Best regards,
    Mike

Viewing 30 posts - 391 through 420 (of 33,009 total)