Let me try and explain what I mean here.... I have a lot of images on my page, and different paths where they are stored.
<img src="what/ever/folder/pic01.jpg">
<img src="and/even/longer/path/name/pic09.jpg">
<img src="what/ever/folder/pic01.jpg">
<img src="and/even/longer/path/name/pic09.jpg">
etc... they are scattered all over the long page
Would it be possible with CSS or HTML or.. to make a variable containing each path, and then use that in the HTML?
PATH01 = 'what/ever/folder/'
PATH02 = 'and/even/longer/path/name/'
And then do the images, styles etc..
<img src={PATH01}"pic01.jpg">
Or something like that? (am I making any sense?`hehe)