Community Central
Community Central
Forums: Index Support Requests Admin central
Fandom's forums are a place for the community to help other members.
To contact staff directly or to report bugs, please use Special:Contact.
Archive
Note: This topic has been unedited for 274 days. It is considered archived - the discussion is over. Information in this thread may be out of date. Do not add to unless it really needs a response.


I've noticed on admin central on community central. How does that part of community central have a diffrent logo?

Please help

Cap123 (Talk) Wikia Robot 11:40, July 22, 2012 (UTC)Cap123

It's done through adding appropriate CSS code to MediaWiki:Wikia.css. The /* namespace specific logos and background */ section contains to code that changes the wordmark on Admin Central. Sovq 06:56, July 22, 2012 (UTC)
I've tried it on my wiki still the same
Copy/pasting the code isn't enough. The CSS selectors used in that particular piece of code refer to namespaces you most likely don't have on your wiki, which is why there is no difference. Sovq 13:53, July 22, 2012 (UTC)
Do you know how I can make it work? —This unsigned comment is by Cap123 (wallcontribs). Please sign your comments by adding "~~~~" in the source editor.

(Reset indent) You will need to find the number of the namespace you are trying to change. If it's a default namespace, you can use the list on Help:Namespaces. If it's a custom namespace there's other ways to find the number. Anyway, after you have the number, you'll need this code:

.ns-XXX h1.wordmark.medium.graphic {background: url("IMAGE") no-repeat scroll 0% 0% transparent !important;}
 
.ns-XXX #WikiHeader h1.wordmark img {zoom:1; opacity:0; filter: alpha(opacity=0); -ms-filter: "alpha(opacity=0)"; -khtml-opacity:0; -moz-opacity:0;}

Replace the XXX with that namespace number, and replace IMAGE by your desired image. Then it should work. - Tjcool007 (Talk) 09:28, July 24, 2012 (UTC)