-
Content Count
3,378 -
Joined
-
Last visited
-
Days Won
18
Adlago last won the day on June 16 2020
Adlago had the most liked content!
About Adlago

-
Rank
Speed Happy
- Birthday 10/17/1958
Contact Methods
- Website URL
IPS Marketplace
-
Resources Contributor
Total file submissions: 3
Profile Information
-
Gender
Male
-
Adlago reacted to a post in a topic: Registers an unload listener
-
I use a webp logo - it works well for me. I use this in a template logo <a href='{setting="base_url"}' id='elLogo' accesskey='1'><div class='mylogo' title="mylogo"></div></a> And I load a logo through a custom CSS.
-
Did you consider this? Thanks
-
sobrenome reacted to a post in a topic: Lazy loading for Profile Photos
-
sobrenome reacted to a post in a topic: Lazy loading for Profile Photos
-
sobrenome reacted to a post in a topic: Lazy loading for Profile Photos
-
SUBRTX reacted to a post in a topic: Render-blocking CSS
-
Fast recovery ... We humans are stronger than viruses ...🙂
-
Adlago reacted to a post in a topic: Follow everyone!
-
SeNioR- reacted to a post in a topic: Lazy loading for Profile Photos
-
PS. The only unpleasant thing about using the data-src is that the IPS has fixed the delay time in javascript. My experiments report that the time that IPS has fixed, for the data-src, is ideal for desktop, but it is a bit for mobile ... I will be happy if IPS takes this time as an option in ACP, so that the administrator can increase / reduces this time for different devices. Moreover, this time should be longer for sites using ads, and less for sites without ads ... It is especially important for mobile .
-
This is a good idea - but not everything is accepted by html5 validation. I've experimented with much better performance attributes, but unfortunately validation html5 makes them errors
-
aXenDev reacted to a post in a topic: Lazy loading for Profile Photos
-
IPS for delayed loading images uses data-src in java script. I apply the following for a user photo on my site - in a template userPhoto I replace this <img src='{$member->photo}' alt='{$member->name}'> with <img src="data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=" data-src='{$member->photo}' alt='{$member->name}'> For react like in a template reactionOverview I replace <img src='{$reaction->_icon->url}' alt="{lang="reaction_title_{$reaction->id}" escape="true"}"> with <img src="data:image/png;base64,R0lGO
-
Yes, it's best to create your own template and put your Critical CSS in it.
-
Critical CSS is an inline presented CSS. This CSS rules is tagged ... <style> your Critical CSS rules </style> and placed in a head site before closing the tag head. (</head>)
-
Adlago reacted to an entry: Solved Content Improvements
-
Nope, no one was interested in that. I have no idea how IPS will solve issues with speed improvements.
-
Preload CSS from a few months ago is not evaluated by test servers, incl. and from PSI. The effect of preload loading CSS to improve loading speed is very small and not worth using. What removes CSS render-blocking is only critical CSS. But creating a working well-critical CSS takes a lot of time and this increases the budget maintenance of the site. For several months I have been working on a project where I move a large volume of external CSS to the end of a global template before loading a java script. I also use and create my own critical css in the head, tailored to my content a
-
Adlago reacted to a post in a topic: Has the Coronavirus effected your life?
-
When the rule is removed in the misc.css file .ipsCoverPhoto_photo { width: 100%; /*opacity: 0.0001;*/ } cover photo is now displayed correctly in the mobile app. Please review this.
-
This is a very old bug - it existed in a much older version of IPS and then this bug was fixed Strange why it reappeared in mobile APP ...
-
I had forgotten about this bug in APP Pages - even I don't remember in which version of IPS I had reported it. But I remember @Matt solved it then. And now I don't have this bug on my site. But I noticed that in mobile APP - this bug exists. When Date is used in the title, it is displayed as a decimal number - only in mobile APP. When you click on the link - "You do not have permission for this". In a live site everything is OK. See screenshot
-
Cover photo always loads with delay. But with mobile APP this delay does not allow the display of a cover photo - ie. only the background color of this area is displayed. This issue how can it be removed?
-
There are too many duplicate selectors in version 4.5.2. In my site I find 48 duplicate selectors. Any recalculation of css causes a browser delay. Here is the most striking case. The css framework/ spectrum.css - triple selector for "sp-container" .sp-container{position:absolute;top:0;left:0;display:inline-block;z-index:9999994;overflow:hidden} .sp-container{border-radius:0;background-color:#fff;padding:0;border-radius:4px;color:#000;box-shadow:0 0 0 1px rgba(99,114,130,.16),0 8px 16px rgba(27,39,51,.08)} .sp-container{padding-bottom:0} Contradictory rules can also be seen here