Forum Replies Created

Viewing 30 posts - 21,811 through 21,840 (of 35,070 total)
  • Author
    Posts
  • in reply to: more small issues #1094272

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Some Custom Requests please :) #1094271

    Hi,
    Please use our pre-built child theme
    You will want to take a couple of steps, 1: please export your theme settings at: Enfold Theme Options > Import/Export > Export Theme Settings File to your computer, this is just for backup.
    2: Once you install your child theme, please import your parent theme settings at:
    Enfold Theme Options > Import/Export > Import Settings from your Parent Theme
    Then you’ll need to re-set your menu options.
    Finally, sometimes it is necessary to save your theme options one more time, to encourage the settings to be saved and activated in the merged /wp-content/uploads/dynamic_avia/ folder, a simple way to do this is to go to General Styling > Quick CSS field and place a space in the field so the theme options “Save all changes” button is clickable.

    If you have any trouble with this we can help with an admin login and ftp access in the Private Content area.

    Best regards,
    Mike

    in reply to: Header background color not displayed #1094270

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

    #menu-item-7314-ar a {
    background-color: #fd9351 !important;
    }

    Please add this css and clear your browser cache.

    Best regards,
    Mike

    in reply to: Blog Navigation on both sides of blog #1094268

    Hi,
    Sorry but there is not.
    This is just not how the code was written for this element. Sorry, but this would require excessive customization to work, If you really want this try hiring a freelancer. Wish I could have been more helpful.

    Best regards,
    Mike

    in reply to: Caption not fully visible #1094255

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: more small issues #1094254

    Hi,
    Glad we could help, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Translation issue in social media heading in blog post #1094253

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

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $( 'body' ).each(function() {
    $( this ).find( '.av-share-box' ).insertAfter( $(this).find('main.content') );
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

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

    .av-share-box {
    margin-bottom: 20px !important; 
    }

    Best regards,
    Mike

    in reply to: more small issues #1094246

    Hi,
    When I check your page, the css is working for me. Please see the screenshot in Private Content area.
    Please try clearing your browser cache.

    Best regards,
    Mike

    in reply to: Specific CSS code for only two pages #1093796

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

    #top.page-id-368 input[type="text"],#top.page-id-343 input[type="text"] {
    padding: 8px 12px !important;
    }
    
    #top.single-product input[type="text"] {
    padding: 8px 30px !important;
    }

    Best regards,
    Mike

    in reply to: Burger Menue Icon #1093795

    Hey Kornelia,
    You can change the burger menu icon with this css, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .av-hamburger::before {
        content: url(https://png.icons8.com/settings/ios7/25);
        display: block;
        padding-top: 5px;
    }
    .av-hamburger-inner {display:none!important;}

    Note that I’m using an image on icons8.com but you can upload an image to your site and then change the url.

    Best regards,
    Mike

    in reply to: Link in content-section #1093794

    Hey Maureen,
    I see that you are using youtube for the video, so I was going to suggest adding a button to the end of the video there, but I’m not sure that it will still work as a background video.
    I would recommend adding a button full time below the video, such as “Learn More”
    The video is not going to fire a “done” trigger to start the load of a button on the page.

    Best regards,
    Mike

    in reply to: Remove space between columns on mobile view #1093792

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Custom Content beneath opened sidebar flyout menu #1093789

    Hi,
    I tested this out on my localhost and found that if you create a widget area with this function in your functions.php you will get a widget under your menu:

    
    add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    dynamic_sidebar( 'header' );
    }

    Besure to add a custom widget called “header” in your widgets.
    Then if you add this css it will be hidden:

    .inner-container > #text-6 {
    display: none !important;
    }

    Then if you add this javascript the widget will be added to your mobile menu on click, it can not be on “page load” because the menu doesn’t exist until “click”:

    function widget_burger_menu(){
      ?>
      <script>
    (function($){
    $(window).click(function(){
      $( "#text-6" ).appendTo( "#av-burger-menu-ul" );
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'widget_burger_menu');

    Please note my widget had the ID of #text-6
    your will be different, so just match the ID of the widget.
    Then clear your browser cache and check.
    Please let us know if you want a hand with this.

    Best regards,
    Mike

    in reply to: more small issues #1093781

    Hi,
    I took a look at your socket social icons and added this css in your English side Quick CSS:

    @media only screen and (max-width: 425px) {
    #socket > .container {
        width: 100% !important; 
        max-width: 100% !important; 
    }
    #socket > .container > ul {
    margin-left: 0px !important; 
    }
    }

    This works down to 333px, but not for the smallest mobile sixe 320px.
    There are just too many icons and there is no padding to remove. You would need to make the icons smaller, but then there may be issues of clicking them.

    Best regards,
    Mike

    in reply to: Caption not fully visible #1093773

    Hi,
    Glad to hear, I assume we can close this now, but I like to ask first. Shall we close this then?

    Best regards,
    Mike

    in reply to: Change breadcrumb link on single post pages #1093770

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Custom icons – server didnt response #1093768

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Error on productvariations and more (only Enfold) #1093767

    Hi,
    Yes.

    Best regards,
    Mike

    in reply to: Advanced Styling #1093764

    Hi,
    Thank you for the screenshots, it looks like your issue is with the heading fonts. According to your merged css all of the headings are

     font-family: 'open sans','HelveticaNeue','Helvetica Neue','Helvetica-Neue',Helvetica,Arial,sans-serif;

    Which is probably set by your theme settings. What font did you want for h2 & h3?
    Please try disable file merging for CSS and JS files under Enfold->Performance options, and Then clear your browser cache and any cache plugin, and check.
    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: Need help with a blog post. #1093761

    Hi,
    Thanks for the screenshot. If Ismael is looking into this we should wait to hear back from him.

    Best regards,
    Mike

    in reply to: more small issues #1093760

    Hi,
    #4 I checked your css and you had a &gt; instead of > this sometimes happens when copying the code from emails.
    Please clear your browser cache and check.
    I changed your social icons code so they all show now. But your last two are png which are black so they don’t show well before scroll. Please try converting them to fonts at the Fontello website.

    Best regards,
    Mike

    in reply to: Sticky sidebar #1093757

    Hi,
    I didn’t see your code in the child theme functions.php.
    I added this code instead:

    function custom_script(){
      ?>
      <script>
    (function ($) {
      function a() {
        $(window).scroll(function (e) {
          var $sticky = $('#nav_menu-10');
          var position = ($sticky.css('position') == 'fixed');
          if ($(this).scrollTop() > 100 && !position) {
            $sticky.css({ 'position': 'fixed', 'top': '150px', 'width': $sticky.innerWidth() });
            $sticky.next().css('float', 'right');
            $sticky.addClass('fixed_element_style');
          }
          if ($(this).scrollTop() < 100 && position) {
            $sticky.css({ 'position': 'static', 'top': '0px', 'width': '' });
            $sticky.next().css('float', 'left');
            $sticky.removeClass('fixed_element_style');
          }
        });
      }
    
      a();
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Seems to work good, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Translation issue in social media heading in blog post #1093755

    Hi,
    Thanks for the login, to correct the “Share this entry” to “Del denne oppføringen” I hope this is correct.
    I added this code to the end of your child theme functions.php file.

    function modify_share_title(){
    	return "Del denne oppføringen";
    }
    add_filter('avia_social_share_title', 'modify_share_title');

    As for your second question, I’m not sure were you want to move the social icons, at the very end of the page.
    I’m not sure which is your “custom field”.

    Best regards,
    Mike

    in reply to: Some Custom Requests please :) #1093751

    Hi,
    When I checked your team member popups were working, so I added the css in your Quick CSS add it seems to work fine.
    Please see the video in Private Content area.
    Please clear your browser cache and check again to see if it’s working for you now.

    Best regards,
    Mike

    in reply to: Weird page loading behavior #1093748

    Hi,
    Yes I escalated it, and asked a second time, this may take a couple of days, Thank you for your patience.

    Best regards,
    Mike

    in reply to: more small issues #1093498

    Hey Lukas,
    Sorry for the late reply,
    #1 please try this css:

    #menu-item-990 span.av-icon-char { 
        line-height: 70px !important; 
    }

    Please clear your browser cache and check.
    #2 I adjusted your code so the mixcloud icon would show, I also added this css in the WordPress > Customize > Additional CSS field:

    #top #wrap_all .av-social-link-Mixcloud:hover a{
        color:#fff; 
        background-color:#9fae37; 
    }
    

    Please adjust the color to suit.
    #3 please try switching to the “classic editor” in your theme options, it’s on the same page as the “maintenance” option. Then try making your change again.
    #4 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: 545px) { 
    #top.home .avia-slideshow-inner .avia-slide-wrap > img {
    left: -700px !important; 
    }
    }

    Best regards,
    Mike

    in reply to: Some Custom Requests please :) #1093484

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

    #top.page-id-545 a.open-popup-link:hover img {
      filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    }
    #top.page-id-545 .image-overlay.overlay-type-extern .image-overlay-inside:before {
    content: '' !important; 
    background-color: transparent !important; 
    }
    .avia_transform #top.page-id-545 #main a:hover .image-overlay {
        opacity: 0 !important;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Problem displaying shop page #1093481

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Portfolio Grid not showing only 1 column on phone #1093478

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Caption not fully visible #1093476

    Hi,
    Perhaps a good solution would be to also use a full-screen slider for mobile devices only. You can choose which slider to show in the screen options tab of the slider.

    Best regards,
    Mike

Viewing 30 posts - 21,811 through 21,840 (of 35,070 total)