Page 1 of 1

Filter Menu blocked by layer

Posted: Tue Jul 23, 2019 12:34 pm
by iMatt
I am testing the Filter Menu Extention before purchase. However, it is obscured by the layers on my site. Any way to bring this to the front?

http://www.poetrycards.me.uk/

Filter Menu appears when making the site responsive at 550px and below.

Re: Filter Menu blocked by layer

Posted: Tue Jul 23, 2019 1:05 pm
by BaconFries
Any way to bring this to the front?
Simply select either Move to Front/Move Forward on right click of Menu...

Re: Filter Menu blocked by layer

Posted: Tue Jul 23, 2019 1:49 pm
by iMatt
Hmmm...still not working.

Re: Filter Menu blocked by layer

Posted: Tue Jul 23, 2019 2:14 pm
by BaconFries
It is definitely an index order of the menu as on viewing the source css it is at z-index: 1. So depending on how many other objects are on top then you need to move the menu forward that many. Inset the following and see if this resolves it go to Page HTML and insert between <head></head>tags*

Code: Select all

<style>
#Extension1
{
   z-index: 9999 !important;
}
</style>

Re: Filter Menu blocked by layer

Posted: Wed Jul 24, 2019 6:14 pm
by iMatt
Problem solved! Simply had to change the 'Stack level' of the page header to be 'in front of content'. Thanks for the input. :D