Community Central
Register
Community Central
Forums: Index Community Central Forum Winx Wikia
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 4325 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.


How can I have a sidebar like Winx Wikia? For example, My idea is to have a sidebar with cars pics. Know what I mean? --Knightrez(Talk) 06:47, June 27, 2010 (UTC)

You can edit the sidebar by changing MediaWiki:Monaco-sidebar. See Help:Sidebar for details. Hope this helps! Mark (talk) 09:54, June 27, 2010 (UTC)
Too hard. I tried it and it went messed up. I mean that WInx Wikia has a sidebar that has an image. --Knightrez(Talk) 06:20, June 28, 2010 (UTC)
Try adding the following to your MediaWiki:Monaco.css (replace the img_url and text_color, of course):
.widget {
 background-image: url(''img_url'');
 color:''text_color'';
}
-- Fandyllic (talk · contr) 10:41 AM PST 28 Jun 2010
I added it and waited. It still doesn't work :( --Knightrez(Talk) 04:01, June 29, 2010 (UTC)
If this is on w:c:automobile it's probably because you have duplicate .widget classes defined. -- Fandyllic (talk · contr) 11:36 PM PST 28 Jun 2010
I deleted the duplicate .widget I dunno why anything still doesn't work. --Knightrez(Talk) 21:27, June 29, 2010 (UTC)
You took my example too literally. Try the following:
.widget {
 background-image: url(http://farm4.static.flickr.com/3606/3414495045_c385a1abe5.jpg);
 color:black;
}
-- Fandyllic (talk · contr) 4:07 PM PST 29 Jun 2010
Ok, I'm afraid it doesn't work. --Knightrez(Talk) 04:48, June 30, 2010 (UTC)
Well, it worked for me on the widgets. I did find you need to do the following for the sidebar menu links, though:
#navigation a {
	background-color: transparent;
	color: #333;
}
-- Fandyllic (talk · contr) 9:13 AM PST 30 Jun 2010
Ive tried everything youve given. It just doesn't seem to work. *sigh* --Knightrez(Talk) 21:58, June 30, 2010 (UTC)
Try putting the following in your w:c:automobile:Special:MyPage/monaco.css:
.widget {
	background-image: url(http://farm4.static.flickr.com/3606/3414495045_c385a1abe5.jpg);
	color:black;
}
#navigation a {
	background-color: transparent;
	color:#333;
}
That worked for me. If it works for you, then you probably have more duplicate CSS or something else interfering in your w:c:automobile:MediaWiki:Monaco.css. -- Fandyllic (talk · contr) 8:55 AM PST 1 Jul 2010
A few rules in w:c:automobile:MediaWiki:Monaco.css are missing their closing brackets, and there are a couple of superfluous ones in other places. Probably the reason why it doesn't work. -- Porter21 (talk) 16:05, July 1, 2010 (UTC)