Filter pages: header-extras/footer-extras CSS layout broken (maybe Search Page Maker?)

Please report bugs and any annoyances here. Kindly include all possible details: steps to reproduce, expected result, actual result, screenshots, ... etc.
Post Reply
User avatar
onoehring
AppGini Super Hero
AppGini Super Hero
Posts: 1156
Joined: 2019-05-21 22:42
Location: Germany
Contact:

Filter pages: header-extras/footer-extras CSS layout broken (maybe Search Page Maker?)

Post by onoehring » 2019-06-16 14:56

Hi,

I believe, there is some CSS tag not being closed in the end of the filter page(s). Probably not by the Search Page Maker (as advanced also shows this problem).

I added this to header-extras (in /hooks)

Code: Select all

<style>
.customFooter{
	width: 100%;
	text-align: center;
}
</style>
and this to footer-extras (in /hooks)

Code: Select all

<div class="footer customFooter well">	
<div class="container">
<span><img src="/ECoMo.png"></span>&nbsp;
<span><strong>ECoMo - Easy Container Mover</strong></span><br /><span>Version 2019-06-19.9.8</span><br /><span>Erstellt von <a href="https://datenbank-projekt.de" target="_blank">https://datenbank-projekt.de</a><span>
</div>
</div>
When I access a regular page everything seems normal:
01.png
01.png (80.83 KiB) Viewed 1419 times
but when I access the filter (created with Search Page Maker):
02.png
02.png (133.26 KiB) Viewed 1419 times
and then, clicking on Advanced Filters:
03.png
03.png (127.93 KiB) Viewed 1419 times

Olaf

User avatar
onoehring
AppGini Super Hero
AppGini Super Hero
Posts: 1156
Joined: 2019-05-21 22:42
Location: Germany
Contact:

Re: Filter pages: header-extras/footer-extras CSS layout broken (maybe Search Page Maker?)

Post by onoehring » 2019-06-17 16:22

Hi,

I noticed a little html-bug in my code.

Code: Select all

<span>
</div>
</div>
I corrected that code (to the one below) but the problem stays.

Code: Select all

[code]
</span>
</div>
</div>
Olaf

Post Reply