Fixed-width for my home
63,450pages on
this wiki
this wiki
Forum page
Forums: Index → Support Requests → Fixed-width for my home
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 676 days. It is considered archived - the discussion is over. Do not add to unless it really needs a response.
Hi, I'm trying to make the 'my home' over at the Chili peppers wiki fixed-width. The founder wants fixed-width only on the main page and 'my home', I've already made the main page fixed-width but can't figure out how to do the same for 'my home'.
Here's the code I'm using for the main page:
body.mainpage div.monaco_shrinkwrap {
left: 50%;
margin-left: -485px;
width: 971px;
}
* html body.mainpage div.monaco_shrinkwrap {
left: auto;
margin-left: auto;
width: 100%;
}
If someone could help me modify it to affect the 'my home', I would really appreciate it.
Thanks in advance. --Anon talk 20:47, July 7, 2010 (UTC)
body.mainpage div.monaco_shrinkwrap,
body.page-Special_MyHome div.monaco_shrinkwrap {
left: 50%;
margin-left: -485px;
width: 971px;
}
* html body.mainpage div.monaco_shrinkwrap,
* html body.page-Special_MyHome div.monaco_shrinkwrap {
left: auto;
margin-left: auto;
width: 100%;
}