I want to change the folder where the logo upload to , is that possible , for example instead of upload it to media/images i want it to be uploaded in templates/customtemplate/images.
I never use the built in logo upload/template injection.
I always make sure the template I'm using has a _sub_header.html file and replace the injection key ' __main_logo__' with the url to the logo image as part of the template. Instead of the template key '__main_logo__', I replace the key with:
<img src="<bx_url_root />templates/tmpl_SomeTemplate/images/logo.png" class="SomeClassName">Logo</img>
Then in the templates common.css add styling
.SomeClassName {
/*css stuff here*/
}
My opinions expressed on this site, in no way represent those of Boonex or Boonex employees.