Currently my info panel looks like this

Moderators: helmut, XnTriq, xnview
Code: Select all
<font style="text-transform: uppercase; font:30px;">
<b>{EXIF:Make}</b> - <b>{EXIF:Model}</b></font>
<font style="font:14px;"><b>Software :</b> {EXIF:Software}</font>
<div style="font:18px; background: gray;">
<b>File :</b> {File Type}
<b>Name :</b> {Filename With Ext}
<b>Size :</b> {Size}
</div><div></div>
<font style="font:20px;"><b>{MPixels} MP</b> ({Width} x {Height})</font>
<font style="font:15px;"><div style="background: gray;">
<b>Shutter Speed :</b> {EXIF:Exposure Time}
<b>ISO :</b> {EXIF:ISO Value}
<b>Aperture :</b> {EXIF:Aperture} ({EXIF:F-Number})
</div><div></div>
<b>Exposure Mode :</b> {EXIF:Exposure Mode}
<b>Exposuire Bias : </b> {EXIF:Exposure Bias} EV
<div style="background: gray;">
<b>Lens :</b>{EXIF:Lens Make} {EXIF:Lens Model}
<b>Focal Length :</b> {EXIF:Focal Length}mm (<b>FF:</b> {EXIF:Focal Length 35mm}mm)
<b>Digital Zoom :</b> {EXIF:xA404}x
</div><div></div>
<b>Scene Brightness :</b> {EXIF:Brightness}
<div style="background: gray;">
<b>Lat :</b> {EXIF:Latitude}
<b>Lng :</b> {EXIF:Longitude}
<b>Altitude :</b> {EXIF:Altitude}
</div><div></div>
<b>Tag:</b> {Tag status} - <b>Rating:</b> {Rating} - <b>Label:</b> {Color label}
</font>
Thanks, looks much better.user0 wrote: Sun Sep 24, 2023 8:39 am few suggestions:
- use transparency via background-color: rgba(100, 100, 100, 0.5) (or any other color), not plain background: gray
- use 2 columns structure to align all values to the left edge
Code: Select all
<font style="font:15px;">
<font style="text-transform: uppercase; font:30px;">
<b>{EXIF:Make}</b> - <b>{EXIF:Model}</b></font>
<font style="font:14px;"><b>Software :</b> {EXIF:Software}</font>
<div style="font:18px; background: rgba(128, 128, 128, 0.5);">
<b>File :</b> {File Type}
<b>Name :</b> {Filename With Ext}
<b>Size :</b> {Size}
</div><div></div>
<font style="font:20px;"><b>{MPixels} MP</b> ({Width} x {Height})</font>
<div style="background: rgba(128, 128, 128, 0.5)">
<b>Shutter Speed :</b> {EXIF:Exposure Time}
<b>ISO :</b> {EXIF:ISO Value}
<b>Aperture :</b> {EXIF:Aperture} ({EXIF:F-Number})
</div><div></div>
<b>Exposure Mode :</b> {EXIF:Exposure Mode}
<b>Exposuire Bias : </b> {EXIF:Exposure Bias} EV
<div style="background: rgba(128, 128, 128, 0.5)">
<b>Lens :</b>{EXIF:Lens Make} {EXIF:Lens Model}
<b>Focal Length :</b> {EXIF:Focal Length}mm (<b>FF:</b> {EXIF:Focal Length 35mm}mm)
<b>Digital Zoom :</b> {EXIF:xA404}x
</div><div></div>
<b>Scene Brightness :</b> {EXIF:Brightness}
<div style="background: rgba(128, 128, 128, 0.5)">
<b>Lat :</b> {EXIF:Latitude}
<b>Lng :</b> {EXIF:Longitude}
<b>Altitude :</b> {EXIF:Altitude}
</div><div></div>
<b>Tag:</b> {Tag status} - <b>Rating:</b> {Rating} - <b>Label:</b> {Color label}
</font>