Skip Navigation

[Resolved] Mouseover text

This support ticket is created 2 years, 11 months ago. 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.

Our next available supporter will start replying to tickets in about 1.99 hours from now. Thank you for your understanding.

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 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 3 replies, has 2 voices.

Last updated by Luo Yang 2 years, 11 months ago.

Assisted by: Luo Yang.

Author
Posts
#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:
hidden link
hidden link
hidden link

#2258367

Where would I put that code?

#2258827