'HOT' and 'NEW' icons showing incorrectly. **FIX**
Posted: 04 Feb 2019, 18:29
HI,
I have been looking into why the HOT and NEW icons for photos were appearing right up in the top left corner of the screen rather than on the photos. I have found out what is causing it, and how to fix it. Not sure if you want to integrate into the next release?
The css for the icons includes (line c156 of phocagallery.css):
position: absolute;
top: 3px;
left: 3px;
I changed it to:
position: relative;
top: -110px;
left: -50px;
and it now aligns the icons correctly.
Hope this helps some folks out??
I have been looking into why the HOT and NEW icons for photos were appearing right up in the top left corner of the screen rather than on the photos. I have found out what is causing it, and how to fix it. Not sure if you want to integrate into the next release?
The css for the icons includes (line c156 of phocagallery.css):
position: absolute;
top: 3px;
left: 3px;
I changed it to:
position: relative;
top: -110px;
left: -50px;
and it now aligns the icons correctly.
Hope this helps some folks out??