Forum:Moving in/bug reports: Difference between revisions

+replies
(+replies)
Line 105: Line 105:
:::I recommend using Firefox. For me at least its faster and more convenient to use than IE. - [[File:Major.png|20px]] [[User:Nicmavr|<span style="color:DarkGoldenrod; font-weight:bold; font-family:Arial">Nìcmávr</span>]] <sup><span style="color:DarkGoldenrod">(</span>[[User Talk:Nicmavr|<span style="color:DarkGoldenrod; font-weight:bold">Tálk</span>]]<span style="color:DarkGoldenrod">)</span></sup> 09:15, 29 October 2010 (EDT)
:::I recommend using Firefox. For me at least its faster and more convenient to use than IE. - [[File:Major.png|20px]] [[User:Nicmavr|<span style="color:DarkGoldenrod; font-weight:bold; font-family:Arial">Nìcmávr</span>]] <sup><span style="color:DarkGoldenrod">(</span>[[User Talk:Nicmavr|<span style="color:DarkGoldenrod; font-weight:bold">Tálk</span>]]<span style="color:DarkGoldenrod">)</span></sup> 09:15, 29 October 2010 (EDT)
::::Indeed, Firefox is strongly advised for browsing in general. - [[File:Black Mesa.jpg|28px]] [[User:Halo-343|<span style="color: purple; font-family: Times New Roman; font-size: 128%;">'''Halo-343'''</span>]] [[User talk:Halo-343|<font color="green">('''Talk''')</font>]] 09:36, 29 October 2010 (EDT)
::::Indeed, Firefox is strongly advised for browsing in general. - [[File:Black Mesa.jpg|28px]] [[User:Halo-343|<span style="color: purple; font-family: Times New Roman; font-size: 128%;">'''Halo-343'''</span>]] [[User talk:Halo-343|<font color="green">('''Talk''')</font>]] 09:36, 29 October 2010 (EDT)
:::::I use IE8 for my daily browsing and I've had no issues with Halopedia. --[[User talk:Jack Phoenix|Jack Phoenix]] 12:20, 1 November 2010 (EDT)


===Resetting of my profile===
===Resetting of my profile===
Line 113: Line 114:
The tabview feature, which would allow embedding a sub-page into an article by entering it between the <tabview> </tabview> tags, doesn't seem to be working here. For an example, [[ONI Candidate Assessment Program V5.02A#Interviews|this is how it shows up here]] while [[W:c:Halo:ONI Candidate Assessment Program V5.02A#Interviews|this is how it's supposed to work]].--[[User:Jugus|<font color="MidnightBlue"><b>Jugus</b></font>]] <small>([[User talk:Jugus|<font color="Gray">Talk</font>]] | [[Special:Contributions/Jugus|<font color="Gray">Contribs</font>]])</small> 10:40, 1 November 2010 (EDT)
The tabview feature, which would allow embedding a sub-page into an article by entering it between the <tabview> </tabview> tags, doesn't seem to be working here. For an example, [[ONI Candidate Assessment Program V5.02A#Interviews|this is how it shows up here]] while [[W:c:Halo:ONI Candidate Assessment Program V5.02A#Interviews|this is how it's supposed to work]].--[[User:Jugus|<font color="MidnightBlue"><b>Jugus</b></font>]] <small>([[User talk:Jugus|<font color="Gray">Talk</font>]] | [[Special:Contributions/Jugus|<font color="Gray">Contribs</font>]])</small> 10:40, 1 November 2010 (EDT)
:Copying it straight from Wikia--it has some dependencies we don't have. Maybe Jack can make it work. --{{User:Porplemontage/sig}} 11:17, 1 November 2010 (EDT)
:Copying it straight from Wikia--it has some dependencies we don't have. Maybe Jack can make it work. --{{User:Porplemontage/sig}} 11:17, 1 November 2010 (EDT)
::TabView is an ugly Wikia hack, its dependencies are quite literally all over the place (which is very typical when it comes to Wikia code; they haven't heard [[mw:User:Brion VIBBER|Brion's]] "extensions should stay as self-contained as possible" mantra). So, please don't use TabView. Instead, you can use Dantman's JS tab system, which I've just added. To make tabs, use code like this:
<pre><nowiki>
<div class="tabcontainer"> <!-- begin tabs -->
<div class="tabbox"> <!-- begin first tab -->
<div class="tab">Tab #1</div>
Contents of the first tab will go here.
</div> <!-- end first tab -->
<div class="tabbox"> <!-- begin second tab -->
<div class="tab">Tab #2</div>
Contents of the second tab will go here.
</div> <!-- end second tab -->
<div class="tabbox"> <!-- begin third tab -->
<div class="tab">Tab #3</div>
Contents of the third tab will go here.
</div> <!-- end third tab -->
<div class="tabbox"> <!-- begin fourth tab -->
<div class="tab">Tab #4</div>
Contents of the fourth tab will go here.
</div> <!-- end fourth tab -->
<div class="tabbox"> <!-- begin fifth tab -->
<div class="tab">Tab #5</div>
Contents of the fifth tab will go here.
</div> <!-- end fifth tab -->
</div> <!-- end tabs -->
</nowiki></pre>
::--[[User talk:Jack Phoenix|Jack Phoenix]] 12:20, 1 November 2010 (EDT)