Jump to content

Ehren

Invision Community Team
  • Posts

    260
  • Joined

  • Last visited

  • Days Won

    22

Reputation Activity

  1. Like
    Ehren reacted to Gary in Hump Day: farewell 😔   
    Wishing you the best of luck in your next adventure, @Jordan Miller.
    I'm helping @Ehren hide the key! You'll never find it here, it's a deceivingly huge country! 😈
    It was great to meet you over Zoom and I personally thank you for being one of the deciding factors in my appointment here at Invision Power Services, Inc. I found myself following IPS very closely especially over the past year and the positivity you brought to the community was second to none, and in all honesty, I loved reading your engaging Hump Day topics, blog entries and announcements. Having been a huge advocate for the software throughout the past 17-18 years, I saw (as a regular client) the change you brought here so naturally and the morale you continued to promote, throughout the community and on the team.
    These are going to be big shoes to fill and despite only being new to the team, I do hope I can have the same sort of drive and motivation you so authentically possessed. I will send you a private message separately but thank you once again for all that you have given me, the community, existing clients, future clients and last but not least, the team.
    I do wish we had more time to work together but I'm sure this won't be the last time we see you. Once again, all the best in your career with AWS and you know where to find us for anything. You will be missed.
  2. Haha
    Ehren got a reaction from The Old Man in Hump Day: farewell 😔   
    It's been a bunch of fun working with you on all of our projects together. You've been a huge part of my time with Invision, always full of positivity, and I'm sure you'll impact just as many people at Amazon.
     
     
    With that said, I'd happily swallow Matts key too. If you ship the key to Australia, it'll be physically impossible for Jordan to use it because it'll only exist in the future.

  3. Haha
    Ehren reacted to Charles in Hump Day: farewell 😔   
    You will be missed, Jordan. I remember flying out to Las Vegas to meet you and when you ran up to me thinking "oh great, he's a hugger." I look forward to what you can do at AWS and expect discounts.
  4. Thanks
    Ehren got a reaction from The Old Man in Why extra link in dropdown navigation menu?   
    Thanks for the report! This has been fixed on this site and will be patched in the next update.
    In the mean time, you can fix it on your own sites by adding this to your custom.css file:
    /* Hide duplicate links in mobile navigation panel */ #elMobileDrawer .ipsDrawer_subMenu a[href=""]{ display: none; }  
  5. Like
    Ehren reacted to Gary in Why extra link in dropdown navigation menu?   
    Amazing work, thanks a lot @Ehren!
  6. Thanks
    Ehren got a reaction from Gary in Why extra link in dropdown navigation menu?   
    Thanks for the report! This has been fixed on this site and will be patched in the next update.
    In the mean time, you can fix it on your own sites by adding this to your custom.css file:
    /* Hide duplicate links in mobile navigation panel */ #elMobileDrawer .ipsDrawer_subMenu a[href=""]{ display: none; }  
  7. Like
    Ehren got a reaction from Afrodude in Why extra link in dropdown navigation menu?   
    Thanks for the report! This has been fixed on this site and will be patched in the next update.
    In the mean time, you can fix it on your own sites by adding this to your custom.css file:
    /* Hide duplicate links in mobile navigation panel */ #elMobileDrawer .ipsDrawer_subMenu a[href=""]{ display: none; }  
  8. Like
    Ehren got a reaction from Senior2323 in CSS question...or disappointment   
    I can happily back up Matt's last post. We've heard your feedback and are aiming to significantly improve both the CSS and JS performance in a future update - but as you can imagine, rewriting 10 years of code is a very long process that needs to be planned carefully.
  9. Like
    Ehren reacted to Randy Calvert in CSS question...or disappointment   
    I suppose it's possible to just delete all the stylesheets... but it will mean we all have websites that looks like it is from 1990.   On the positive side, it should indeed help the page to load super fast!
    Those were some good times though... Wilson Phillips' Hold On was the most popular song of the year.  

     
  10. Like
    Ehren got a reaction from David N. in CSS question...or disappointment   
    I can happily back up Matt's last post. We've heard your feedback and are aiming to significantly improve both the CSS and JS performance in a future update - but as you can imagine, rewriting 10 years of code is a very long process that needs to be planned carefully.
  11. Like
    Ehren got a reaction from SeNioR- in CSS question...or disappointment   
    I can happily back up Matt's last post. We've heard your feedback and are aiming to significantly improve both the CSS and JS performance in a future update - but as you can imagine, rewriting 10 years of code is a very long process that needs to be planned carefully.
  12. Like
    Ehren got a reaction from SeNioR- in Quote iframe keeps on jumping   
    I have a feeling this may be caused by line-heights.
    Is it fixed if you add this to your custom.css file?
    /* Fix jumping scrollbar in embedded content */ .ipsRichEmbed .ipsType_richText{ line-height: 1.4; }  
  13. Like
    Ehren got a reaction from Marc Stridgen in Quote iframe keeps on jumping   
    I have a feeling this may be caused by line-heights.
    Is it fixed if you add this to your custom.css file?
    /* Fix jumping scrollbar in embedded content */ .ipsRichEmbed .ipsType_richText{ line-height: 1.4; }  
  14. Like
    Ehren got a reaction from Olmyster in Change default font-family   
    It’s not actually a limitation with our software or an issue with your theme, it’s just the way import statements work. You can read more about it here. 🙂 
  15. Like
    Ehren got a reaction from Afrodude in Change default font-family   
    It’s not actually a limitation with our software or an issue with your theme, it’s just the way import statements work. You can read more about it here. 🙂 
  16. Like
    Ehren got a reaction from Afrodude in Change default font-family   
    Your site is currently using this code:
    @import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap" rel="stylesheet'); body { font-family: Creepster, cursive; } It needs to be this:
    @import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap'); body { font-family: Creepster, cursive; }  
    With that said, import statements should only appear at the very top of your css file. Depending on how your theme has been coded, the custom.css file can be appended to other files, which means that your import statement is no longer at the top.
    A safer solution would be to use the <link> code. Add this to the <head> area of your theme:
    <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Creepster&display=swap" rel="stylesheet"> Then use this in your css:
    body { font-family: 'Creepster', cursive; }  
  17. Like
    Ehren got a reaction from SeNioR- in Change default font-family   
    Your site is currently using this code:
    @import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap" rel="stylesheet'); body { font-family: Creepster, cursive; } It needs to be this:
    @import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap'); body { font-family: Creepster, cursive; }  
    With that said, import statements should only appear at the very top of your css file. Depending on how your theme has been coded, the custom.css file can be appended to other files, which means that your import statement is no longer at the top.
    A safer solution would be to use the <link> code. Add this to the <head> area of your theme:
    <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Creepster&display=swap" rel="stylesheet"> Then use this in your css:
    body { font-family: 'Creepster', cursive; }  
  18. Like
    Ehren got a reaction from SeNioR- in Change default font-family   
    Hello,
    This code is working fine for me:
    @import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap'); body { font-family: Creepster, cursive; }  

    If you're trying to use it on a 3rd party theme, post your URL here and I'll take a closer look for you 🙂
  19. Thanks
    Ehren reacted to Afrodude in [Paid] - Custom HTML Integration & Setup   
    @EpicScript.io it's best if you visit this page
    IPS4 Providers - Invision Community
    and I recommend contacting @TAMANor @ehren. best themes, great designs, and well developed.
  20. Like
    Ehren got a reaction from SeNioR- in [Theme Bug] Record List   
    Thanks Afrodude - I'll keep this in mind for a future update! 🙂
  21. Thanks
    Ehren got a reaction from shahed in Easier modding   
    Hi shahed,
    Thanks for the suggestion.
    This has also been on my mind for quite a while and is on my todo list for a future update. 🙂
  22. Like
    Ehren got a reaction from Afrodude in Easier modding   
    Hi shahed,
    Thanks for the suggestion.
    This has also been on my mind for quite a while and is on my todo list for a future update. 🙂
  23. Thanks
    Ehren got a reaction from Afrodude in [Theme Bug] Record List   
    Thanks Afrodude - I'll keep this in mind for a future update! 🙂
  24. Like
    Ehren reacted to Afrodude in [Theme Bug] Record List   
    @Ehren there is a responsivity issue on Pages records list whenever you enable all these options 
     

     
    If you disable 

    From group settings everything is fine, but whenever you enable it, it will look like what you are seeing in above screenshots. 
  25. Like
    Ehren got a reaction from SeNioR- in Easier modding   
    Hi shahed,
    Thanks for the suggestion.
    This has also been on my mind for quite a while and is on my todo list for a future update. 🙂
×
×
  • Create New...