Menu

Hide Image Properties

0 votes

Is there a way to hide properties (Type and Size) of the Image?
https://photos.app.goo.gl/tUiPo5CXTAYWt4tN9

I understand that this might be needed for someone but also there are cases when user would care less about it.
Is there a way to hide/ not display "Type" and "Size" of the image like in my example that is circled in red?

in Customization by (820 points)

1 Answer

0 votes
 
Best answer

Using CSS you can hide those details. You can set a custom CSS class for the field if you want to be specific or you can just include the following CSS in your custom CSS file.

In your custom CSS file you can include the following to hide the details:

/* To cover all fields */
.objectDetails>li {
   display: none;
}

/* To specify a single field, note the space after the custom class */
.customFieldClass .objectDetails>li {
   display: none;
}

For help on creating a custom CSS file see: CSS Field

by (64.3k points)
selected by
Welcome to the dbFront Q&A site, where you can ask questions and receive answers from other members of the community.
 | Minimalist Answer Theme by Digitizor Media
 |
Powered by Question2Answer
...