Home Forums WoodMart support forum Disable image description when hovering

Disable image description when hovering

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #100228

    nnominor
    Participant

    Disable image description when hovering

    Attachments:
    You must be logged in to view attached files.
    #100273

    Hello,

    Enter Media Library, find this image and remove the title https://prnt.sc/m3yn19

    Best Regards

    #100278

    nnominor
    Participant

    The title is formed automatically when you upload photos
    And is considered mandatory
    Is it possible not to display / hide this caption programmatically?
    On some topics (for example, The7) there is such an option or simply the inscription

    #100301

    Hello,

    Our theme does not have such an option, you can try this code:

    .wpb_single_image img {
    	pointer-events: none;
    }

    Please add the code to the Theme Settings > Custom CSS

    Best Regards

    #100336

    nnominor
    Participant

    This code fits only one image type.
    And the site uses many types:
    – Galleries
    – Promotional banners

    Attachments:
    You must be logged in to view attached files.
    #100388

    Hello,

    Add the class to the element disable-img-title and then this code:

    .disable-img-title img {
    pointer-events: none;
    }

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)