The curly quote at the start of the href value is causing the issue. Make sure to use regular, straight quotes for anything to do with actual html code.
They are just straight double quotes from my KB, Don.
I modified the link to
<A href ”kraft-images/agro-stickers-r.jpg">Agro
and inspecting the element in kraft.php I see
<a href="" ”kraft-images="" agro-stickers-r.jpg”="">Agro = $0
so i modified it again to escape the backslash
<A href ”kraft-images/agro-stickers-r.jpg>Agro
and inspecting the element in kraft.php I see
<a href="" ”kraft-images="" agro-stickers-r.jpg”="">Agro = $0
I have re-type the cell in numbers but I cannot see where the SPACE is coming from.
Please look carefully. You still have curly quotes in some areas. The link simply won’t work with them. Using your keyboard does not always result in straight quotes. Note that:
”kraft-images/agro-stickers-r.jpg"
… has a curly quote before the “k” of kraft. If you can’t see the difference between that quotation mark and the one at the end then perhaps new eyeglasses needed.
It may seem like a super small thing, but it makes all the difference in this case.
The difference between straight and curly quotes IS subtle if you are not used to coding. In the regular world who cares about the difference very much? But in coding it makes all the difference in the world. Almost all of us have been tripped up the straight-vs-curly issue at one point. Glad all is sorted now!