Main menu

Forum


× Help Forum English

[Shape5 Vertex issue & fix] How to show event image in tool tip?

  • AnneM
  • Auteur du sujet
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 10 ans 2 semaines - il y a 9 ans 11 mois #7107 par AnneM
iCagenda Version 3.3.3 - Free version
Module iCagenda - tool tip

How can I include event picture in the tool tip?
Dernière édition: il y a 9 ans 11 mois par Lyr!C.

Connexion ou Créer un compte pour participer à la conversation.

  • AnneM
  • Auteur du sujet
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 10 ans 1 semaine #7123 par AnneM
Réponse de AnneM sur le sujet How to show event image in tool tip?
Solved it:
Added to stylesheet
div#ictip a div.linkTo span.img img {opacity: 1 !important;}

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 10 ans 1 semaine #7150 par Lyr!C
Réponse de Lyr!C sur le sujet How to show event image in tool tip?
Hello!

This maybe due to a conflict with a plugin adding an opacity to images on website, as iCagenda is not using opacity...

The first time i see such an issue...
Do you know which extension is giving this css conflict ? (or is it possible to have an online link, to try to understand this ?)

Best Regards,
Cyril

Latest version : iCagenda 3.9.3
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

  • AnneM
  • Auteur du sujet
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 10 ans 3 jours #7239 par AnneM
Réponse de AnneM sur le sujet How to show event image in tool tip?
Sorry, it runs still on localhost (XAMPP) so I cannot provide a link.

Maybe the template is giving this issue?
Anyway the line included in CSS solved the issue.

Thank you.

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 10 ans 1 heure #7277 par Lyr!C
Réponse de Lyr!C sur le sujet How to show event image in tool tip?
Hi!

Yes, in major cases, it is a template issue (in rare cases, a plugin or third party extension giving an opacity by default to img tags (which is not always good!). ;-)

What is the site template you use (in case it could help another user)?

Best Regards,
And thank you for feedback!
Cyril

Latest version : iCagenda 3.9.3
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

  • AnneM
  • Auteur du sujet
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 9 ans 11 mois #7312 par AnneM
Réponse de AnneM sur le sujet How to show event image in tool tip?
The site template is Shape5 Vertex.
Les utilisateur(s) suivant ont remercié: Lyr!C

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 9 ans 11 mois #7342 par Lyr!C
Réponse de Lyr!C sur le sujet How to show event image in tool tip?
Thank you!

Useful information ;-)

Cyril

Latest version : iCagenda 3.9.3
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

  • BenGalf
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 9 ans 11 mois #7349 par BenGalf
I'm using shape5 as well ..

@AnneM .. Could you point me to which of the CSS files you are editing ?

Firebug points me to the "Template.css" file of vertex if im not mistaken.

@Lyr!C .. If you still need to view it .. i'll leave it unmodified on lgnd.us/v2 .. until you reply.

Thanks.

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 9 ans 11 mois #7355 par Lyr!C
Réponse de Lyr!C sur le sujet How to show event image in tool tip?

AnneM écrit: Solved it:
Added to stylesheet

div#ictip a div.linkTo span.img img {opacity: 1 !important;}


@BenGalf : add this line at the end of template.css file of your shape5 template. (you can edit the file directly in Joomla admin).

This way, it won't be override by your site template css classes. ;-)

Or maybe try to edit ROOT/components/com_icagenda/themes/default/css/default_module.css (and/or ic_rounded theme too), and replace this :
/* Image Thumb */
#ictip span.img img {
	width: 100px;
	border: 0px solid #ccc;
	border-radius: 3px;
	opacity: 1 !important;
}
by this :
/* Image Thumb */
#ictip span.img img {
	width: 100px;
	border: 0px solid #ccc;
	border-radius: 3px;
	opacity: 1 !important;
}

The problem is an override of opacity on img tag (image) by the site template (really don't know why such a choice in a site template... :huh: )

Thanks for link!

Note that i will add the opacity: 1 !important; in the major release 3.4.0 of iCagenda.

Cyril

Latest version : iCagenda 3.9.3
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

  • BenGalf
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 9 ans 11 mois #7358 par BenGalf
Réponse de BenGalf sur le sujet How to show event image in tool tip?
Thank you!

Great product.. i'll be sure to rate/review.

Connexion ou Créer un compte pour participer à la conversation.

Modérateurs: Lyr!C
Temps de génération de la page : 0.159 secondes

Follow Us

Créez vos templates Joomla avec Template Creator CK

acymailing logo new