I have noticed there is a difference between the error handeling in the demo site and the quickstart installations.
In the quickstart installations (tested with a fresh installation with no file modification at all and a live site) the error displayed (after a failed login attempt for exemple) is all messed up, see the attached images or do a failed login attempt in http://tourisme.nadorpresse.com)
When checking the source code I noticed a different class used in the demo, than the one used in the quickstart, the generated code in the demo site is :
- Code: Select all
<div id="system-message-container">
<dl id="system-message">
<dt class="error">Error</dt>
<dd class="error message">
<ul>
<li>Username and password do not match or you do not have an account yet.</li>
</ul>
</dd>
</dl>
</div>
The one generated in the sites running a quickstart package is :
- Code: Select all
<div id="system-message-container">
<div id="system-message">
<div class="alert alert-warning"><a class="close" data-dismiss="alert">×</a>
<h4 class="alert-heading">Warning</h4>
<div>
<p>Username and password do not match or you do not have an account yet.</p>
</div>
</div>
</div>
</div>
I'm actually using a banner in the top_banner position (unpublished untill I get this error message problem fixed), I'm trying to use the styling for the error message used in the "news" template (message on top pushes the menu bar down)...
Any idea how to get this fixed?