Newskin Wiki
Register
Advertisement
Page thumbnail

Page area affected by this change

With the new skin, there is an image attribution line on any thumbnail image - the uploader of any image is listed with name and avatar. This may be useful for some "social" wikis, but is not useful for most academic or "encyclopedic" wikis.

Image attribution can be hidden by adding the following line to your personal CSS:

/** Removes "uploaded by" attribution from images **/
.WikiaArticle .picture-attribution {
  display:none;
}

Alternatively, it can be removed from the page by adding the following to your personal JS:

//remove image attribution
$('.picture-attribution').remove();

For full effect, combine the two methods so that the attribution lines get immediately hidden as the page loads, then cleanly removed later.

Advertisement