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 ;
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
#
#-----[ REPLACE WITH ]---------------------------------------------
#
before you have done the edits the code part is ;
Code: Select all
<div id="cp-main" class="mcp-main">
<!-- IF MESSAGE -->
<div class="content">
<h2>{L_MESSAGE}</h2>
<p>{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 class="error">{MESSAGE}</p>