Hi,
I was wondering if its possible to change the tiny icons representing page and blog icons in news feeds(Ones mainly found on the dash? So for instance, instead of just the small icon of a 'page', important blog updates could get a star?
Thanks
Alternatively, just replace the image file with what you want (while keeping the filename as it is)? These icons are likely located in the <confluence-installation>/images/icons folder.
@Justin Downing is right. That's the quickest way to get what you want. However, you'll need to remember what you did when you come to upgrade though, as this customisation will likely be reverted.
Another approach would be to override the CSS with a custom stylesheet.
Browse to...
Confluence Admin | Look and Feel | Stylesheet
Click on edit and paste...
.icon-page {
background: transparent url(/path/to/new/page-16.gif) no-repeat scroll 0 0;
}
.icon-blog {
background: transparent url(/path/to/new/blog-16.gif) no-repeat scroll 0 0;
}
This is more likely to survive an upgrade, expecially if the icons are attached to a page that permits anonymous access.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The simplest way is to rename the image files that the stylesheet (confluence/includes/css/icons.css) is using:
.icon-page {
background: transparent url(../../images/icons/docs_16.gif) no-repeat scroll 0 0;
}
.icon-blog {
background: transparent url(../../images/icons/blogentry_16.gif) no-repeat scroll 0 0;
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.