Shape 5

Joomla Templates => Velocity - Club => : olirc October 22, 2013, 12:55:54 PM



: Module coming up in front of floating header
: olirc October 22, 2013, 12:55:54 PM
Hi,

When I scroll down the page, one of the modules (it's JoomlaXTC's Timeline module) is coming up in front of the floating header.

I don't have a link, as I'm just working on a live site, during quiet periods (overnight), so I can't demo it.

I'm hoping you might be able to suggest a fix without being able to see it.

Many thanks,
Oliver


: Re: Module coming up in front of floating header
: mikek October 22, 2013, 02:47:04 PM
Hello,

They probably have a z-index set extremely high, you can try increasing the header's z-index with the following in custom.css:

#s5_header_outer.s5_floating_header {
z-index:10000000000;
}


: Re: Module coming up in front of floating header
: olirc October 22, 2013, 03:22:37 PM
Thanks mikek.  That's done the trick.

Great support, as always.   ;D


: Re: Module coming up in front of floating header
: olirc October 26, 2013, 08:01:44 AM
Hi mikek,

I just realised that having increased the z-index of the floating header, the flex menu then fell behind the header (floated).  I added the following code (I've included your code) to the custom.css file which has solved the problem.  Just thought I'd post this incase anyone else has the same issue.  :)

:
#s5_header_outer.s5_floating_header {
z-index:10000000000;
}

#subMenusContainer{
z-index:10000000001;
}


: Re: Module coming up in front of floating header
: mikenicoll October 27, 2013, 02:53:26 PM
Thanks for posting

-Mike