-
AuthorPosts
-
March 5, 2019 at 8:21 pm #1075052
Hello,
The links on the back of “icon grid” do not work.
What is the solution?Thanks !
Lelef
March 6, 2019 at 12:11 am #1075189Hey 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 ShannonMarch 6, 2019 at 2:09 am #1075220I give you the requested informations in the private part.
Best regards,
March 7, 2019 at 6:33 am #1075781Hi,
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,
RikardMarch 8, 2019 at 3:11 pm #1076397Hello,
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,
LelefMarch 13, 2019 at 8:45 am #1078157Hi lelef,
The links are working on my end.
2 Do you mean the whole header or the meta header?
Best regards,
VictoriaMarch 20, 2019 at 11:57 am #1080783Hello,
There are two links in the Grid Item Content that do not work.
Best regards,
Lelef
March 22, 2019 at 8:24 am #1081747Hi Lelef,
Can you please make a small screencast on your end? The links are working fine on my machines.
Best regards,
VictoriaMarch 28, 2019 at 2:29 am #1083867Hi Victoria,
yes indeed, I had to find an alternative.
I created a new page to show you the bug.Best regards,
Lelef
March 28, 2019 at 2:30 am #1083868Hi !
Another problem,
revision history only displays revisions of 3 weeks.Best regards,
Lelef
March 28, 2019 at 2:35 am #1083870Hi !
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
April 3, 2019 at 5:48 am #1086358Hi,
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 -
AuthorPosts
- You must be logged in to reply to this topic.