Forum Replies Created

Viewing 30 posts - 7,321 through 7,350 (of 34,625 total)
  • Author
    Posts
  • 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

    Hi,
    When I check your homepage on Android I see your search and cart icons, please see the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: H3 tags in the footer #1406277

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

    function custom_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($) {       
      function replaceElementTag(targetSelector, newTagString) {
        $(targetSelector).each(function(){
          var newElem = $(newTagString, {html: $(this).html()});
          $.each(this.attributes, function() {
            newElem.attr(this.name, this.value);
          });
          $(this).replaceWith(newElem);
        });
      }
      replaceElementTag('#footer h3.widgettitle', '<p></p>');
    }(jQuery)); 
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');

    But if you use this script you will need to not defer jQuery

    Best regards,
    Mike

    in reply to: Published date not updating in Google #1406276

    Hi,
    I searched one of your blog titles that had a date of May 1 on your site and Google also shows the same date, title and screenshot below.
    As Rikard pointed out the theme has no influence over search engine results, but it seems like Google is crawling your site.
    One issue I often see on this topic is that Google will sometimes find some random numbers or a date in the post and will use it as the post date in the search results, try using a SEO plugin to help set the schema post dates.

    Best regards,
    Mike

    in reply to: Enfold Medical Theme #1406260

    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

    in reply to: Gradient transparent permanent header #1406259

    Hi,
    To have your header gradient show before scroll try this css:

    #top #header.av_header_transparency .header_bg {
        opacity: 1;
    }

    If you plan to have pages where this is not applied, I recommend adding the page ID so to not add this to every page, like this:

    #top.page-id-3290 #header.av_header_transparency .header_bg {
        opacity: 1;
    }

    To flip the header gradient colors, just swap the order of the colors in the above css, like this:

    #header.header_color > .header_bg {
     	background-image: linear-gradient(rgba(20,21,23,0) ,rgba(20,21,23,1)100%);
     	background-color: transparent;
     }

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

    Best regards,
    Mike

    in reply to: How to disable animated number section #1406226

    Hi,
    You should see the numbers without any animation, as requested above, when I check your page this is what I see:
    Enfold_Support_1961.jpeg

    Best regards,
    Mike

    in reply to: CSS Dyanmic #1406225

    Hi,
    Thanks for the screenshots, examining the gold font color for the H2 in the screenshot it looks like you want to apply this css:

    h2 {
        color: #e4b632 !important;
        text-transform: none !important;
    }

    but I didn’t find this css in the Enfold Theme Options ▸ General Styling ▸ Quick CSS field or in your child theme stylesheet or in your WordPress ▸ Customize ▸ Additional CSS, but I did find it in your Custom CSS & JS plugin in the Single post blog ES entry
    Enfold_Support_1957.jpeg
    this plugin allows you to set rules for when the css will be used and this page doesn’t match any of the rules, except when you preview the page:
    Enfold_Support_1959.jpeg
    so please try adding this page to your rules for this css for it to show on the frontend.

    Best regards,
    Mike

    in reply to: leaflet map custom icon not showing #1406218

    Hi,
    Thanks for the feedback, I misunderstood, please do contact the plugin author, we can not correct the plugin error from the theme it will require the plugin files to be corrected.

    Best regards,
    Mike

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

    Hi,
    Thanks for the feedback, I was able to load your site and for the news page linked below I added this css to your Quick CSS:

    .slide-entry .slide-meta,
    .av-masonry-entry .av-masonry-date {
    	display: none;
    }

    and the dates are now not showing.
    Please clear your browser cache and check.
    Please note that Safari 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: How to disable animated number section #1406212

    Hi,
    Thanks for the feedback, please include this css also:

    .js_active #top .avia-animated-number-title {
        visibility: visible;
    }

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

    Best regards,
    Mike

    in reply to: boxed layout but using content 1/1 full size #1406178

    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

    Hi,
    Glad to hear that you have this sorted out, and thanks for sharing your solution. 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: leaflet map custom icon not showing #1406176

    Hi,
    Perhaps this plugin is also preventing the marker from showing, try disabling your plugins and see if the marker then shows, I have tested your custom marker on a leaflet map element on my test site without plugins and it shows correctly, as you can see in the screenshot and link above.

    Best regards,
    Mike

    in reply to: Centered Logo with navigation overlapping #1406175

    Hi,
    Try this css instead:

    @media only screen and (min-width: 780px){
    #top #header .av-main-nav li:nth-child(3) {
        margin-right: 125px;
    }
    #top #header .av-main-nav li:nth-child(4) {
        margin-left: 125px;
    }
    #top .main_menu .avia-menu.av_menu_icon_beside {
        padding-right: 0;
    }
    }

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

    Best regards,
    Mike

    in reply to: Gradient transparent permanent header #1406173

    Hi,
    Thanks for the login, to have the top color section behind the header I set the header to Transparent Header, please check.
    As for the “PERSONALIZED & DISCRETE APPROACH” columns the second set has different settings that the first set and the third set has Separator / Whitespaces in their own columns unlike the first set, try removing the second and third set of columns and cloning the first set two more times in the same color section so all of them are together.
    Another option would be to remove all of the Separator / Whitespaces and use css for a top and bottom border for your text. Let us know if you want help with this css.

    Best regards,
    Mike

    in reply to: Mobile menu – Font size and colour #1406129

    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: Change H1 and H2 font size for in mobile view #1406128

    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

    Hi,
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

Viewing 30 posts - 7,321 through 7,350 (of 34,625 total)