When installing an Umbraco site, I changed my umbraco admin url from ‘/umbraco/’ to ‘/myadminurl/’, even before I went through the install process.
Just like it’s documented, I changed in the web.config the keys ‘umbracoReservedPaths’ and ‘umbracoPath’ to match my new admin url.
Installed and everything is working fine, except for one thing:
All the nodes in the trees in all sections aren’t showing any thumbnails. There used to be a win folder thumb before each tree node, but now it’s just empty, except for the ‘packages’ node in the developer section, and for the recycle bin thumb.
Am I missing anything else I should had changed?
Thanks!
Lee Kelleher answered my question in the Umbraco forum here.
The answer is that it looks like the image reference for the tree icons are hard-coded to use the "/umbraco" path.
2 options:
Manually create the path to the image? The CSS is specifically looking for…
/umbraco/images/umbraco/sprites.png
Change the reference in the CSS, (rule for ".tree.tree-umbraco li a") …
/umbraco_client/Tree/Themes/umbraco/style.css
Cheers!