Hi,
right now I do this to tell the template the url where to grab de image:
I create a Global Variable with the URL Path:
http://web-ejemplo.com/themes/site_themes/web/
{Url_IMAGENES}
And then I embed that Global Variable in every <img= >
<div id=“header-social-icons”>
<ul>
<li>{Url_IMAGENES}images/icons/social-from-iconsweets/twitter.png</li>
<li>{Url_IMAGENES}images/icons/social-from-iconsweets/facebook.png</li>
<li>{Url_IMAGENES}images/icons/social-from-iconsweets/gplus.png</li>
<li>{Url_IMAGENES}images/icons/social-from-iconsweets/vimeo.png</li>
<li>{Url_IMAGENES}images/icons/social-from-iconsweets/youtube.png</li>
<li>{Url_IMAGENES}images/icons/social-from-iconsweets/flickr.png</li>
<li><div id=“header-search”>
<input type=“text” name=“Search” id=“search” placeholder=“Search the site”>
<input type=“submit” name=“Go” id=“go” value=“Go”>
</div>
</li>
</ul>
</div>
</div>
<!—TOP ELEMENTS ENDS—>
Is there a more efficient way of doing this?
Like setting it somewhere in CP or setting a Global Path at the beginning of the template or so?
BTW, can you embed Global Variables within Global Variables or is better use templates with Global Variables and embed those templates y other templates?
Thanks