Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1075052

    Hello,

    The links on the back of “icon grid” do not work.
    What is the solution?

    Thanks !

    Lelef

    #1075189

    Hey lelef,

    Where do you want the link to go to? Please provide a link to the site/page in question so we can look into this issue further.

    Best regards,
    Jordan Shannon

    #1075220

    I give you the requested informations in the private part.

    Best regards,

    #1075781

    Hi,

    Thanks for that, though the links seems to work fine on my end using Chrome. Could you try to explain a bit further on how to reproduce the problem please?

    Best regards,
    Rikard

    #1076397

    Hello,

    1/ ICON GRID problem :
    if I put several links in the text of the back of the icon grid module, they do not work.
    Currently I had to put a unique link on the entire back, but I want to put disfferent links.

    2/
    how to hide the top bar when scrolling on mobile, how to do ?

    Best regards,
    Lelef

    #1078157

    Hi lelef,

    The links are working on my end.

    2 Do you mean the whole header or the meta header?

    Best regards,
    Victoria

    #1080783

    Hello,

    There are two links in the Grid Item Content that do not work.

    Best regards,

    Lelef

    #1081747

    Hi Lelef,

    Can you please make a small screencast on your end? The links are working fine on my machines.

    Best regards,
    Victoria

    #1083867

    Hi Victoria,
    yes indeed, I had to find an alternative.
    I created a new page to show you the bug.

    Best regards,

    Lelef

    #1083868

    Hi !

    Another problem,
    revision history only displays revisions of 3 weeks.

    Best regards,

    Lelef

    #1083870

    Hi !
    I wish I had the same sticky menu as the desktop version of my site on the smartphone version.
    I wish the social icon disappears when we scroll the page.
    How to do ?

    Best regards,

    Lelef

    #1086358

    Hi,
    Sorry for the late reply, it looks like you have found a way to make your mobile header sticky, but when you say you wish for your social icons to disappear on scroll, do you want the whole bar that the social icons are in to disappear with the phone number, or just the icons?
    This code will make the whole top bar disappear on scroll, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function ($) { 
      $(window).scroll(function() {    
          var scroll = $(window).scrollTop();
          if (scroll >= 100) {
              $("#header_meta").css({ 'display': 'none'});
          } else {
             $("#header_meta").css({ 'display': 'block'});
          }
      });
      })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.