Experiencing a 401 Unauthorized Error During Update?
If you're seeing a 401 Unauthorized error when trying to update your Joomla extension, it's likely due to our new two-factor authentication (2FA) security measure for your Download ID.
To resolve this, check your email (Spam folder?) for a message to approve your server or device, or read our detailed blog post here(
onlinecommunityhub.nl/best-practice/new-...-extension-downloads) to understand the steps involved. This will guide you through approving your server for future updates.
No bug responsive header image
- Hervé
- Topic Author
- Offline
Less
More
- Posts: 121
- Thank you received: 0
1 year 4 months ago - 1 year 4 months ago #2551
by Hervé
responsive header image was created by Hervé
Hello Ruud
I hope you're having a good summer and are less bothered by the heat than in France?
Another question that may be at the limit of your plugin?
I'd like to put a header image (later with the transparent logo and the astroid theme menu) in the foreground.)
See: ascension.fr/ or www.altiplano-voyage.com/
I've tried several CSS solutions, but I'm not very satisfied because it doesn't look right on some screens or it's blurry
I've been given this other track to take into account all types of screens, but it's a bit complicated for me.
www.alsacreations.com/article/lire/1621-...e-images-srcset.html (FR)
I'd like to know if with a single webp image in the header, your plugin could take care of generating all the ccs to be responsive everywhere?
I've activated the options (see image) but if I reduce the screen size, I can't see anything.
Regards
I hope you're having a good summer and are less bothered by the heat than in France?
Another question that may be at the limit of your plugin?
I'd like to put a header image (later with the transparent logo and the astroid theme menu) in the foreground.)
See: ascension.fr/ or www.altiplano-voyage.com/
I've tried several CSS solutions, but I'm not very satisfied because it doesn't look right on some screens or it's blurry
Code:
#hs-1529472563843 { /* on met ici ce que l'on ne répétera pas */
background-repeat: no-repeat;
background-size: cover;
}
@media screen and (max-width: 23rem) { /* 23rem X16 = 368px minimum */
#hs-1529472563843 {
background-image: url("/0,medias/img/cordistes_toit_360-46.jpg");
}
}
@media screen and (min-width: 23.01rem) and (max-width: 119.99rem) {
#hs-1529472563843{
background-image: url("/0,medias/img/cordistes_toit_1366-177.jpg");
}
}
@media screen and (min-width: 120rem) { /* 1920px par exemple */
#hs-1529472563843{
background-image: url("/0,medias/img/cordistes_toit_1920-250.jpg");
}
}
I've been given this other track to take into account all types of screens, but it's a bit complicated for me.
www.alsacreations.com/article/lire/1621-...e-images-srcset.html (FR)
I'd like to know if with a single webp image in the header, your plugin could take care of generating all the ccs to be responsive everywhere?
I've activated the options (see image) but if I reduce the screen size, I can't see anything.
Regards
Last edit: 1 year 4 months ago by Hervé.
Please Log in to join the conversation.
- Ruud van Lent
- Offline
Less
More
- Posts: 1640
- Thank you received: 107
1 year 3 months ago #2552
by Ruud van Lent
Replied by Ruud van Lent on topic responsive header image
Hi Hervé,
yes vacation was great, not to hot and not to rainy
I have moved your request to ochResponsiveImages support thread.
ochResponsiveImages doesn't generate css. It will replace the html <img> element it finds on a page with an <img srcset> element, that isit: nothing more / nothing less.
What you are trying to accomplish can best be done 'manually' via a (template) css file. Once you have figured out the correct / most optimal settings you are good to go. This is a single / one time task and not a repetitive task that benefits from 'automation' via a plugin.
regards,
Ruud.
yes vacation was great, not to hot and not to rainy
I have moved your request to ochResponsiveImages support thread.
ochResponsiveImages doesn't generate css. It will replace the html <img> element it finds on a page with an <img srcset> element, that isit: nothing more / nothing less.
What you are trying to accomplish can best be done 'manually' via a (template) css file. Once you have figured out the correct / most optimal settings you are good to go. This is a single / one time task and not a repetitive task that benefits from 'automation' via a plugin.
regards,
Ruud.
Please Log in to join the conversation.
- Hervé
- Topic Author
- Offline
Less
More
- Posts: 121
- Thank you received: 0
1 year 3 months ago #2557
by Hervé
Replied by Hervé on topic responsive header image
Hi Ruud
OK, I'll give it a try even though I'm having trouble getting started. Do you think I can do it with just one webp image?
I don't feel like multiplying images
Regards
OK, I'll give it a try even though I'm having trouble getting started. Do you think I can do it with just one webp image?
I don't feel like multiplying images
Regards
Please Log in to join the conversation.
- Ruud van Lent
- Offline
Less
More
- Posts: 1640
- Thank you received: 107
1 year 3 months ago #2562
by Ruud van Lent
Replied by Ruud van Lent on topic responsive header image
I think best to start with one image and when that is working see if you can or need improving. One of the improvements then could be to use a srcset with multiple images
Please Log in to join the conversation.