Yes , just following the subsilver2 changesCebar wrote:Hello iam using FI Subice theme do i need to make the same changes as the subsilver theme ? coz the FI Subice is working great (3.0.1) and my forum is (3.0.4).
Thanks
For what for style ?ANgelArvil wrote:so what is the changes for 3.0.2 to 3.0.4?
Why is the code changes written like that though? I understand in instances where there are several instances of the same code and/or difficult to find the code, but like in the first example above;Raimon wrote:First search for the first "find" code, after that the second "find" code.
And if you have done that, replace the last code with the "replace" code .
So this would be ;
before you have done the edits the code part is ;styles/prosilver/template/mcp_header.html
#
#-----[ FIND ]---------------------------------------------
# Around Line 43
<div id="cp-main" class="mcp-main">#Code: Select all
<!-- IF MESSAGE --> <div class="content"> <h2>{L_MESSAGE}</h2>
#-----[ FIND ]---------------------------------------------
# Around Line 48
#Code: Select all
<p>{MESSAGE}</p>
#-----[ REPLACE WITH ]---------------------------------------------
#Code: Select all
<p class="error">{MESSAGE}</p>
after you done all the edit , it would be ;Code: Select all
<div id="cp-main" class="mcp-main"> <!-- IF MESSAGE --> <div class="content"> <h2>{L_MESSAGE}</h2> <p>{MESSAGE}</p>
Code: Select all
<div id="cp-main" class="mcp-main"> <!-- IF MESSAGE --> <div class="content"> <h2>{L_MESSAGE}</h2> <p class="error">{MESSAGE}</p>
Code: Select all
#
#-----[ FIND ]---------------------------------------------
# Around Line 24
<li class="header">
<dl class="icon">
<dt>{L_TOPICS}</dt>
<dd class="posts">{L_REPLIES}</dd>
<dd class="lastpost"><span>{L_LAST_POST}</span></dd>
#
#-----[ FIND ]---------------------------------------------
# Around Line 29
<dd class="mark">{L_MARK}</dd>
#
#-----[ REPLACE WITH ]---------------------------------------------
#
<!-- IF not S_MERGE_SELECT --><dd class="mark">{L_MARK}</dd><!-- ENDIF -->
OH yes i got it , i was sure that there is a certain cause of course , thank you prototech for your answer .prototech wrote:The update system will only update the default styles (prosilver and subsilver2). All other styles must be updated manually, which is the purpose of the style changes from one version to another.
i think you can find here : http://www.phpbb.com/community/viewtopi ... 4&t=880735 what you ask for .assam_siddibapa wrote:wat are the changes for 3.0.3 to 3.0.4 for prosilver
there are no changes from 3.0.3 to 3.0.4Mandarola wrote:I would like know if there are changes in subsilver 2 from 3.0.3 to 3.0.5 ?
tks a lot, but I woul like to ask u again about this subject!HardStyle wrote:there are no changes from 3.0.3 to 3.0.4Mandarola wrote:I would like know if there are changes in subsilver 2 from 3.0.3 to 3.0.5 ?
but there are for 3.0.4 to 3.0.5
Download the Code Changes and follow the subsilver2 instructions