Forum Replies Created

Viewing 30 posts - 25,951 through 25,980 (of 34,798 total)
  • Author
    Posts
  • in reply to: Flaticon #990927

    Hi,
    Odd, I don’t experience this issue on your site, the old icons are not showing & the new ones do.
    Please see screenshots in Private Content area.
    Try clearing your browser cache, or login with incognito mode.

    Best regards,
    Mike

    in reply to: Custom text formatting for a specific page #990925

    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: Hover color of the font on the mobile menu #990924

    Hi,

    @Guenni007
    , thanks for the suggestion, his current menu items were already red in mobile and desktop, he just doesn’t have a homepage menu item.
    Nice use of “:not()”

    Best regards,
    Mike

    in reply to: Replace a H2 by H1 in a easy slider fullpage #990920

    Hi,
    Glad @Guenni007 was 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: 2 columns row for mobile devices #990877

    Hey laptophobo,
    Please try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) { 
    .responsive #top.page-id-3307 #wrap_all .flex_column.av_one_fourth {
    width: 48% !important; 
    margin-right: 2% !important; 
    }
    .responsive #top.page-id-3307 #wrap_all .flex_column_table_cell {
        float: left !important; 
    }
    }

    Best regards,
    Mike

    in reply to: Flaticon #990876

    Hey pixeet2016,
    If I understand your question correctly, you are asking why you can’t install all of the sets at the same time?
    I took a look at your icon sets, which are actually a font, and they all seem the same, except the “afs2r” set has more than the “my-icons-collection1” set.
    The “my-icons-collection” set has SVG images that can’t be used, so the font is the same as the “afs2r” set.

    I hope this explains it, I recommend picking the one with more icons and deleting the others.

    Best regards,
    Mike

    Hi,
    I believe I have solved this for mobile, please try clearing your mobile cache a couple of times and check.
    I disabled your Javascript file merging and compression under the performance settings, I believe this had a copy of the old script in it.

    Best regards,
    Mike

    in reply to: Design appears different in different browsers #990871

    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: Remove link from the small preview image in blog posts #990869

    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: Hover color of the font on the mobile menu #990868

    Hi,
    Thanks for the login, I added this code in the General Styling > Quick CSS field:

    #top #header .av-main-nav > li.current-menu-item:hover a span.avia-menu-text {
        color: #ff0000 !important; 
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: enfold child #990867

    Hi,
    You will want to add the files to the child theme inside their folders like they are in the parent theme, so for the comments.php it will go in the shortcodes folder, like this:
    /enfold-child/comments/comments.php

    but the helper-main-menu.php needs to be like this:
    /enfold-child/includes/helper-main-menu.php

    for the css files, please add them like this:
    /enfold-child/css/shortcodes.css
    /enfold-child/css/layout.css

    and add following code to functions.php file of your child theme:

    add_action( 'wp_enqueue_scripts', 'wp_change_shortcodescss', 20 );
    function wp_change_shortcodescss() {
      wp_dequeue_style( 'avia-scs' );
      wp_enqueue_style( 'avia-scs-child', get_stylesheet_directory_uri().'/css/shortcodes.css' );
      wp_enqueue_style( 'avia-scs-child', get_stylesheet_directory_uri().'/css/layout.css' );
    }

    Best regards,
    Mike

    in reply to: Class av-partner-fake-img issues #990864

    Hi,
    That is great news, unless there is anything else we can assist with on this, shall we close this then?

    Best regards,
    Mike

    in reply to: Using pngs instead of fontello icons #990860

    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: Boxed Layout + Changes to Top Bar & Logo Area, etc. #990854

    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: Custom text formatting for a specific page #990853

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    #custom_footer br {
      content: "";
      margin: -.5em;
      display: block;
    }
    #custom_footer p {
    margin: 0px !important;
    }
    #custom_footer h4 {
    margin-bottom: 0px !important;
    }

    Best regards,
    Mike

    in reply to: Using pngs instead of fontello icons #990689

    Hi,
    For the first tab, when active, this is the correct css:

    #top.home #av-tab-section-1 a.av-active-tab-title[data-av-tab-section-title="1"] .av-tab-section-icon { background: url(https://wpg.com.gridhosted.co.uk/wp-content/uploads/2018/07/euricon_hover.png) !important; background-size: contain !important; background-repeat: no-repeat !important; background-position: 50% 50% !important;}

    I put it into place, Please clear your browser cache and check.
    As for the background color of the first tab, you had a space in the css which broke it, I fixed it, please check.

    Best regards,
    Mike

    in reply to: enfold child #990671

    Hi,
    I corrected the directory structure for your post slider in your child theme
    /shortcodes/postslider/postslider.css and postslider.php
    but you have other files in the shortcodes directory that should be in their own directory plus you should remove the extra directory (config-templatebuilder) in your child theme.

    I also added the functions.php function into your child theme, but I don’t understand what your custom postslider is to do, so I’m unsure if it is working.
    Please check, and if you can add a screenshot of what you expect to see, it would help.

    Best regards,
    Mike

    in reply to: Class av-partner-fake-img issues #990656

    Hi,
    I copied the page with the debug code, and published the page, temporary, then deleted.
    You will need to publish the page, not preview.
    Please try clicking each partner logo and re-selecting the logo and then save, the last logo will fill all of the spots until each one has been chosen.
    I suspect this is due to a plugin, but in my test this extra step (re-selecting) seemed to correct.

    Best regards,
    Mike

    in reply to: Replace a H2 by H1 in a easy slider fullpage #990654

    Hi,

    @Guenni007
    thanks, very handy.

    @SANDYAMAR
    unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Site still showing Layerslider needs updating #990538

    Hi,
    Glad it worked for you, 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

    Hi,
    I made some adjusts to your css and added this to solve your logo on mobile:

    @media only screen and (max-width: 478px) { 
    .avia-menu.av_menu_icon_beside {
    padding: 0px !important;
    margin-right: 0px !important; 
    }
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Boxed Layout + Changes to Top Bar & Logo Area, etc. #990534

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    #top.page-id-983 .container_wrap.title_container {
    display: none !important;
    }
    .html_header_top.html_header_sticky #top.page-id-983 #wrap_all #main {
        padding-top: 0px!important;
    }

    Best regards,
    Mike

    in reply to: Border under Widget Titles? #990530

    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: Class av-partner-fake-img issues #990525

    Hi,
    For the English page that only shows one logo, I found no errors in the debugger, but I did find that copying the page to a new test page and re-selecting the logos seems to fix the problem.
    I didn’t want to try it on your live page, so please try re-selecting the partner logos.

    Best regards,
    Mike

    in reply to: Replace a H2 by H1 in a easy slider fullpage #990522

    Hi,

    @SANDYAMAR
    thanks for the ftp access, I added @Guenni007 code from above and see that it has changed all of the slider caption H2 tags to H1. It also retains the inline css and classes, so there be no need to add more css, as in my example.
    Thanks @Guenni007, well done :)

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: enfold child #990236

    Hi,
    Please include a admin login & FTP access in the Private Content area, so we can take a look.
    What change did you make to the postslider, what do you expect to see when the child theme version is loading correctly?

    Best regards,
    Mike

    in reply to: How to replace an icon and the related text? #990233

    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: Replace a H2 by H1 in a easy slider fullpage #990230

    Hi,
    Please include a admin login & FTP access in the Private Content area, I will take a look.

    Best regards,
    Mike

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 989px) {
    #top #wrap_all .social_bookmarks a {
    color: #000 !important;
    }
    .avia-menu.av_menu_icon_beside {
    padding: 0px !important;
    margin-right: 12px !important; 
    }
    }

    Best regards,
    Mike

    in reply to: Class av-partner-fake-img issues #990212

    Hi,
    The other partner logos do have the class assigned, perhaps this one had a background color applied in error within the element when the image was picked. Without logging in, this is only a guess.
    Concerning the other issue, perhaps the shortcode tree is broken, if you enable the debugger, the debug window & Shortcode parser will show below the advanced layout builder, and from it’s drop down choices it can try to self repair or generate a report to see the error.
    Very rarely, there will be an error that is not recoverable, but recreating the page from scratch (no ALB templates) doesn’t reproduce the error.
    If you wish, you could try recreating the page, or check the Shortcode parser.

    Best regards,
    Mike

Viewing 30 posts - 25,951 through 25,980 (of 34,798 total)