Winx Wikia
79,539pages on
this wiki
this wiki
Forum page
This Forum has been archived
Visit the new ForumsForums: Index → Community Central Forum → Winx Wikia
Wikia's forums are a place for the community to help other members.
To contact staff directly or to report bugs, please use Special:Contact.
To contact staff directly or to report bugs, please use Special:Contact.
Note: This topic has been unedited for 368 days. It is considered archived - the discussion is over. 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)
- 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'';
}
- 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
- You took my example too literally. Try the following:
.widget {
background-image: url(http://farm4.static.flickr.com/3606/3414495045_c385a1abe5.jpg);
color:black;
}
- 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;
}
- 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)