User:Maelwys/wikia.css

From Tardis Wiki, the free Doctor Who reference
Clear your cache often around here

After changes are made to this site's CSS or Javascript, you have to bypass your browser's cache to see the changes. You can always do this by going to your browser's preferences panel. But many browsers also offer keyboard shortcuts to save you that trouble. The following shortcuts work in the versions of the browsers that Tardis currently supports. They may not work in earlier versions.

  • Firefox: hold down Shift while performing a page reload.
  • Opera offers no default keyboard shortcut, but you can create a custom keyboard shortcut with the value Clear disk cache
  • Safari users should simultaneously hold down + Option + E. You may need to enable the Develop menu first
  • Chrome: press Ctrl + F5 or Shift + F5 while performing a page reload.
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=-=- FixMe.css is a bit of code that
=-=- you can use to enact fixes to your wikia skin
=-=- which are recommended by the admin staff of this wiki,
=-=- but which Wikia, Inc. do not allow this wiki to 
=-=- make the default condition.  
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=-=- By electing to use this file, you are making a 
=-=- personal choice about how you'd like to view the site.
=-=- Such election does not violate Wikia's Terms of Use policy.
=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=
=-=- To use these fixes, simply add the following line to your 
=-=- personal CSS file located at [[User:USERNAME/wikia.css]].
=-=- Note that if you edit in monobook, you should also cut and paste the
=-=- following line to [[User:USERNAME/monobook.css]].
 
     @import url("/index.php?title=MediaWiki:FixMe.css&ctype=text/css&action=raw");
 
=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=
=-=- If you should find that you ever need to temporarily deactivate
=-=- this code, you are advised to keep it in your wikia.css file, but
=-=- remark it out, so that you can easily RE-activate it.  The following is an
=-=- example of how to deactivate the code efficiently:
 
     //@import url("/index.php?title=MediaWiki:FixMe.css&ctype=text/css&action=raw");
 
=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=
=-=- This file is largely a twin of [[memoryalpha:MediaWiki:Concealer.css]]
=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-= */
 
 
/** Removes the "add a photo" button for galleries **/
.wikia-photogallery-add { 
  display: none !important;
}
 
/** ... and the monobook version... just in case they change to use this **/
.wikia-gallery-add {
  display: none !important;
}
 
/** Adds "Discuss" keyword to speech bubble **/
.commentsbubble:before,
.comments:before {content:"Discuss article: ";color:#666;}
 
 
/** Removes "spotlights" module in sidebar **/
#WikiaSpotlightsModule { 
  display: none !important;
}
 
/** Removes "spotlights" module at the bottom **/
#SPOTLIGHT_FOOTER,
#WikiaRandomWiki,
div.toolbar+section header h1 { 
  display: none !important;
}
 
/** Removes "Sponsoring" crap in case of freak accidents! **/
.SponsoredLinksModule {
  display: none !important;
}
 
/** Restores "red links" for uncreated categories **/
.newcategory {
  color: #b92f2d !important; /*apparently not necessary to !important this, but just to make sure . . .*/
}
.newcategory:visited {
  color:#cc6600 !important;
}
 
/** Moves edit button on user pages to a better location **/
.UserProfileActionButton {
  position: absolute;
  right: -315px;
  text-align: right;
  top: -30px;
  padding: 0px;
}