Logo image is changing its address? (Urgency)

Permalink
Hi, do you know how to make logo to be visible to other pages. now it's visible only on homepage. The problem is comming from the url. When I go to about page the images url changes from file/1.png to about/files1.png there there is no image. What to do?
http://example1.azuli.org/

 
adamjohnson replied on at Permalink Best Answer Reply
adamjohnson
Maybe you forgot to put <?=$this->getThemePath()?> before the image path? So something like:

<img src="<?=$this->getThemePath()?>/files/1.png" alt="" />


All images in your theme that are in your theme files (excluding the CSS of course) need the getThemePath reference. See step 6C here for more info:

http://www.concrete5.org/documentation/how-tos/designers/converting...
da4kinov replied on at Permalink Reply
Thank you very much!