• Hi!
    I’m no programmer but I work with one website from time to time. It’s on WordPress and I’m satisfied with almost everything except for one minor detail. It’s the filenames which pop up every time you move the cursor over images. I understand that this is not so important, but it bothers me as a perfectionist. Also, some image names are quite long. Can anyone tell me how to get rid of this and is it even possible?
    Here’s the screenshot

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

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

    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

    Add below links in wp-content/themes/rehub/style.css near line number #1743

    .mb20 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('a img').removeAttr('title');

    OR you have to remove the title from images

    Hope this helps.

    Best Regards,
    Kartik

    Hi Luis,

    Please follow these simple steps for removing the image files name.

    Goto your WordPress dashboard and click on Media. Here you will find all the images that you have used in your website.
    Now simply select click on that image, here you will see all the details of this image. on the right-hand side of your screen, you will find a Title here is the name of your image that is showing on the mouse hover. Just delete the Title of the image and take a look of your website. The image name will never appear.

    Title is the field where you can write any information that you want to show. By default it takes the file name of the images.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Image names popping’ is closed to new replies.