?
avatar C-Lodder
C-Lodder
3 Mar 2017

Steps to reproduce the issue

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:

screeny

Expected result

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>

System information (as much as possible)

  • Joomla staging
avatar C-Lodder C-Lodder - open - 3 Mar 2017
avatar joomla-cms-bot joomla-cms-bot - change - 3 Mar 2017
Labels Added: ?
avatar joomla-cms-bot joomla-cms-bot - labeled - 3 Mar 2017
avatar C-Lodder C-Lodder - edited - 3 Mar 2017
avatar brianteeman
brianteeman - comment - 10 Mar 2017

cannot confirm. All the extensions I tested just displayed the titlle. Can you supply a sample extension that displays this issue

avatar C-Lodder
C-Lodder - comment - 10 Mar 2017

@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');
}
avatar brianteeman
brianteeman - comment - 10 Mar 2017

See #14453 for PR

avatar C-Lodder C-Lodder - change - 10 Mar 2017
Title
[3.7]
[3.7] Extension installation grid margin issue
Status New Closed
Closed_Date 0000-00-00 00:00:00 2017-03-10 11:07:00
Closed_By C-Lodder
avatar C-Lodder C-Lodder - close - 10 Mar 2017

Add a Comment

Login with GitHub to post a comment