Okay
  Public Ticket #1040267
image description
Closed

Comments

  •  2
    rod clemen started the conversation

    Hi, is there any way to disable the image description in the portfolio?

  •  291
    Paul replied

    Hi Rod!

    Did you mean the description on portfolio single pages? If so, you can use custom CSS to hide that. Please try applying this code:

    .single-uxbarn_portfolio .post-title,
    .single-uxbarn_portfolio .post-content {
        display: none;
    }
    

    You can apply the code by going to "Appearance > Customize > Additional CSS".

    If you would also like to use custom CSS for other elements, I recommend Developer Tools on Chrome or Firebug on Firefox to inspect the elements on the page. Then you will know which CSS selector to adjust.

    More info: https://uxbarn.com/inspecting-elements-developer-tools/

    Hope this helps!

    Regards,
    Paul

  •  2
    rod clemen replied

    no, the image description under each image (i dont know the technical term for it :)

    Under each picture is says "Foto: rod clemen" etc.

  •  291
    Paul replied

    Ah I see. Please try using this one instead:

    .single-uxbarn_portfolio .image-caption {
        display: none;
    }
    

    ;)