Shape 5

Joomla Templates => Regan Tech - Club => : flaxton February 27, 2018, 07:52:29 PM



: How to force Floating Menu above page content?
: flaxton February 27, 2018, 07:52:29 PM
I'm using a content plugin to create a blog format on this page, but it floats above the floating menu.

Is there a way I can force the floating menu to the front?

Like on this page:

https://palmettofortis.com/index.php/education-partners/meet-our-education-team (https://palmettofortis.com/index.php/education-partners/meet-our-education-team)

Click on the page link and scroll down the page and you'll see what I mean - the floating menu appears between the content blocks, in the background.

Thanks!

Fred


: Re: How to force Floating Menu above page content?
: mikek February 28, 2018, 08:10:00 AM
Hello,

I don't see any content on that page? It is just showing a large white area in the middle of the page. I'll need to see live text in order to see what the issue is.


: Re: How to force Floating Menu above page content?
: flaxton February 28, 2018, 08:16:46 AM
That's strange, it is working here.

I forced a server cache cleaning, maybe that will help?

Please try again.


: Re: How to force Floating Menu above page content?
: flaxton February 28, 2018, 08:24:42 AM
For some reason the PHP settings were set to FPM served by Apache - that was not what I intended. I just switched it to FastCGI served by Apache, my normal setting.


: Re: How to force Floating Menu above page content?
: flaxton February 28, 2018, 08:50:24 AM
AND I found that JCH Optimize was installed and enabled. I thought I had eradicated it from all my sites  :-X

It's gone now! It is known to cause issues.


: Re: How to force Floating Menu above page content?
: flaxton February 28, 2018, 08:58:00 AM
OK, after removing JCH Optimize, the floating menu is working properly.

But it is still showing this behavior on another site:

https://infotechdesign.info/sales-reps (https://infotechdesign.info/sales-reps)

which does not use JCH Optimize.

It uses the MCreative template instead of Regan Tech.


: Re: How to force Floating Menu above page content?
: mikek March 01, 2018, 08:46:13 AM
Hello,

The component you are using isn't coded properly. It's calling a position:absolute with no z-index call, which is always required. That means it will always be the top layer. You can try adding the following to the template's custom.css to override this:

.mnwall-item {
z-index:1 !important;
}

Make sure to clear your cache.