When installing an extension, the title, copyright and license are put in 1 <div class="span12"></div>
, then the description is put in another <div class="span12"></div>
, resulting in the following:
<div class="span12">
<h1>Title</h1>
<p>Copyright</p>
<p>license</p>
</div>
<div class="span12">
<p>description</p>
</div>
This then result in the 2nd <div class="span12"></div>
getting a left margin and pushing the container outside the viewport:
The span12
div's should be wrapped by <div class="row-fluid"></div>
like so:
<div class="row-fluid">
<div class="span12">
<h1>Title</h1>
<p>Copyright</p>
<p>license</p>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<p>description</p>
</div>
</div>
Labels |
Added:
?
|
@brianteeman - my bad, I should have mentioned, it only seems to occur when you use the following in in your script.php
public function install($parent)
{
echo JText::_('SOME_LANGUAGE_STRING');
}
Title |
|
||||||
Status | New | ⇒ | Closed | ||||
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2017-03-10 11:07:00 | ||||
Closed_By | ⇒ | C-Lodder |
cannot confirm. All the extensions I tested just displayed the titlle. Can you supply a sample extension that displays this issue