Sorry I tried to see where this bug is coming from but couldnt find it but it is everywhere there is a modal. No idea if this is a layout, custom element or js issue
Go to com_menus and new menu item
View the source and you will see several instances like this
As you can see there appear to be several extra divs especially the one at the end of the line
Labels |
Added:
?
|
Status | New | ⇒ | Discussion |
Category | ⇒ | Code style |
The highlighted </div>
belongs to <div class="modal-footer">
. I pasted the page source code into Dreamweaver and no mismatched tags were found.
Status | Discussion | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2018-04-23 23:32:12 |
Closed_By | ⇒ | brianteeman |
Due to the loss of formatting (tabs) in the PHP output, the closing
</div>
doesn't align with the starting<div>
to make it appear wrong, when it is actually fine. Match the<div>
s and you will see that this is the case.