When I add picture of the product it automatically appears really small when clicking on Product Card. How to achieve that it would be bigger?
Hi,
Same problem and so same question here ! (version 3.2.2)
Rgds.
I’m sure there is a way within Dolibarr however I don’t know it
To manually change it (this will effect all product pictures)
open file
htdocs/theme/eldy/style.css.php
around line 1693
look for .photo
Should look like this
.photo {
border: 0px;
/* filter:alpha(opacity=55); */
/* opacity:.55; */
}
change to this
.photo {
border: 0px;
height: 175px;
/* filter:alpha(opacity=55); */
/* opacity:.55; */
}
you shouldn’t need to worry about width…
upload your file via ftp to the same location overwriting the original
Regards,
Kevin
Also… By default Dolibarr auto scales this image to small evident via this
<img height=“80” border=“0” title=“File: 5/0/5/photos/1299725-lg.jpg - Size: 1226x984” src="/open/viewimage.php?modulepart=product&entity=1&file=5%2F0%2F5%2Fphotos%2Fthumbs%2F1299725-lg_small.jpg" class=“photo”>
So its a good practice when uploading images you use somewhat large good quality pictures… If not the above adjustment might make the image look fuzzy or pixelated
regards,
Kevin