Welcome to the Club Penguin Wiki! Log in or Create an account to join the community!

User:Perapin/CPWN Improvement Project

From the Club Penguin Wiki, the free, editable encyclopedia about Club Penguin
Revision as of 15:12, 8 April 2015 by imported>Mrdave921 (→‎Slogan ideas)
Jump to navigation Jump to search
Just do it.
Resources


Username Club Penguin Wiki Club Penguin Fanon Wiki Club Penguin Archives Club Penguin Wiki (Portuguese) Club Penguin Wiki Shops
Perapin Yes Yes
Lisured Yes
Mario Rk Yes Yes
Dubstep 4 Dayz Yes
Cp kid Yes Yes Yes
Brookelas Yes Yes
Mrdave921 Yes Yes Yes

Note: Feel free to add your name and the wikis you're active on if you want to participate in the project.



All right guys, so the CPWN is looking to improve to be more robust, attract new users and keep looking fresh. So I thought it would be time for a CPWN Improvement Project. Ideas on this page here will have a mainly network-wide relevance. This is more focused on executing progress and collaborating ideas than the To-do list.

Perapin

03:46, 8 April 2015 (UTC)





Marketing team

CPWN Slogan

CPWN could really use a brand new slogan to differentiate it from Wikia and give our network more of an identity. Yes, we are the "free, editable encyclopedia about Club Penguin" but that's just SEO for the Main Page. What would make our slogan effective? Here's some things to consider:

  • Length: It must not be too long in order to be memorable.
  • Accuracy: It needs to represent an accurate picture of what CPWN is about.
  • Originality: It needs to differentiate itself from other slogans to enhance the network's identity.
  • Beneficiary: It should suggest the risk of not using the network and create a positive feeling.
  • Style: It should be catchy, possibly with metaphorical, vibrant, humorous, euphonious, punning, or rhyming language.

So guys, add in your slogan ideas below.


Slogan ideas

  • Your one-stop shop for Club Penguin help!
  • The Club Penguin encyclopedia where you can edit!

These are two of my slogans. -- (t|c|e) 15:12, 8 April 2015 (UTC)

Staff approval



Comments

Later, we can use the best slogan for banners.

Perapin

04:33, 8 April 2015 (UTC)



Maintenance team

Convert inline CSS to external CSS

As Lisured pointed out, one of the more minor problems on this wiki is the inline CSS used on article. It may be fine in namespaces other than the main, but it's become used on mainspace a lot. For example, if I search "border" on the search bar when I'm looking for the Blue Border Collie, I will find that page somewhere on the top. However, I also get 4990 other search results because of many instances where inline CSS is used to declare a border - whereas a more common search term, Rockhopper, only gets 599 search results.




Step 1: The best way to fix this is to convert inline style CSS to classes. Here's a demonstration of how to convert inline CSS to external CSS from the history table on the 1-up Captain stamp article:

{|border="1" cellpadding="4" cellspacing="0" style="margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;" !'''Available from'''!!'''Available until''' |- |July 26, 2010||''Available'' |- |}

Step 2 (admin task): Before we change anything, we'd need an admin to add a new class with the style to MediaWiki:Common.css. For this case, an appropriate class name relevant to what the style is used for is needed (e.g. .releaseHistory). The code on MediaWiki would have to be as follows:

.releaseHistory {
margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;
}

Step 3: Now, back on the 1-up Captain stamp article, we can now update the inline CSS to external CSS by using the class name:

{|border="1" cellpadding="4" cellspacing="0" class = "releaseHistory" !'''Available from'''!!'''Available until''' |- |July 26, 2010||''Available'' |- |}

We could probably organize a bot to update all those history tables to use the class instead of an inline style CSS. But for any other instances on mainspace articles where repetitive inline CSS is used, it's a good idea to convert the style to a class. This not only prevents unnecessary search results, but also makes pages load faster due to the caching of the external CSS. Also the coding in the source editor would be a lot cleaner too.

Perapin

03:46, 8 April 2015 (UTC)

Staff approval



Comments