Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
What is the css to hide "This image has been resized to fit in the page. Click to enlarge."
Prosper
✭✭
What is the css code to hide "This image has been resized to fit in the page. Click to enlarge." on mobile device?
I cannot get the css class for it since I cannot use firebug on mobile device. Does anyone know the css class or how to hide it?
0
Best Answer
-
jackmaessen ✭✭✭
the class in which that text appears is .ImageResized
So you can hide that text by.ImageResized { display: none; }
7
Answers
the class in which that text appears is .ImageResized
So you can hide that text by
@jackmaessen, thanks.