Navigation überspringen

[Gelöst] Mouseover text

This support ticket is created vor 4 years, 5 months. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Zeitzone des Unterstützers: Asia/Hong_Kong (GMT+08:00)

Dieses Thema enthält 3 Antworten, hat 2 Stimmen.

Zuletzt aktualisiert von Luo Yang vor 4 years, 5 months.

Assistiert von: Luo Yang.

Author
Artikel
#2257951

Hi, I'm trying to create a view of a list of products. On the heading of the product name I would like the text to change to "see product details" and possibly change to a different color when you mouseover it.

littlenaturalnut.com

#2258053

Hello,

It needs custom JS/CSS codes, for example:

jQuery('.tb-heading a').hover(function () {
    jQuery(this).css('color', 'red');
    jQuery(this).text('see product details');
},

More help:
versteckter Link
versteckter Link
versteckter Link

#2258367

Where would I put that code?

#2258827