• Every time I hold the mouse over an image, the title comes up like this:
    https://prntscr.com/nijbme
    As far as I know it can be fixed by deleting the file name in a media library, but I’d like to keep the name so I’m looking for alternatives. How can I hide the titles? Can I do this without third-party plugins?
    Thanks in advance.

    Browsers I use:
    Firefox Quantum 66.0.3 (64-bit)
    Google Chrome 74.0.3729.108 (Official Build) (64-bit)

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi, christianflap

    I am not really sure if that would be possible since that’s a default browser’s feature but you can try to use the following custom CSS to see if that’ll work ( untested )

    .tp-caption img {
        pointer-events: none;
    }

    If this wouldn’t work, unfortunately, there isn’t any different solution excepting using a JS snippet that would allow removing the titles from your images:

    jQuery('div img').removeAttr('title');

    OR you have to remove title from images

    Hope this helps.

    Best Regards,
    Kartik

    Thread Starter Christian Flapton

    (@christianflap)

    Thanks for your fast reply, Kartik!
    I’ll try both ways later and report back.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hiding image titles (frontpage carousel)’ is closed to new replies.