Shape 5

Joomla Templates => Touch of Soul - Club => : tnaybula April 06, 2012, 03:43:34 AM



: Dropdown menu hidden behind frontpage slideshow
: tnaybula April 06, 2012, 03:43:34 AM
I am using frontpage slideshow from joomlaworks but
the dropdown menu now hidden behind the slideshow.

Please help.

Thanks.


: Re: Dropdown menu hidden behind frontpage slideshow
: mikek April 06, 2012, 07:03:55 AM
Hello,

Please post a url to where this occurs.


: Re: Dropdown menu hidden behind frontpage slideshow
: tnaybula April 06, 2012, 09:52:57 AM
The URL is

http://tcbupgrade.theconcertband.com/index.php/medan-band-bbj

I am using joomla 2.54

I have been asked to post URL on my previous postings but none was solved by you.


: Re: Dropdown menu hidden behind frontpage slideshow
: pmiddleton April 06, 2012, 10:40:46 AM
In /modules/mod_fpss/tmpl/Movies/css/template.css, find this section -

#fpssContainer115.fpss-template-movies {
  border: 1px solid #999999;
  font-family: "Trebuchet MS",Trebuchet,Arial,Verdana,sans-serif;
  height: 308px;
  margin: 8px auto;
  overflow: hidden;
  padding: 2px;
  position: relative;
  width: 675px;
}

...and add the following line immediately underneath the width:675px; entry

z-index: 0;


: Re: Dropdown menu hidden behind frontpage slideshow
: tnaybula April 07, 2012, 05:28:48 AM
Hi

I did not find the exact codes you listed, however, I made the following changes and it works fine for the moment

From
#fpssContainer<?php echo $mid; ?>.fpss-template-movies {position:relative;width:<?php echo $width+$sidebarWidth; ?>px;height:<?php echo $height; ?>px;margin:8px auto;border:1px solid #999;padding:2px;overflow:hidden;font-family:"Trebuchet MS", Trebuchet, Arial, Verdana, sans-serif;

To
#fpssContainer<?php echo $mid; ?>.fpss-template-movies {position:relative;width:<?php echo $width+$sidebarWidth; ?>px;height:<?php echo $height; ?>px;margin:8px auto;border:1px solid #999;padding:2px;overflow:hidden;font-family:"Trebuchet MS", Trebuchet, Arial, Verdana, sans-serif; z-index: 0;

I am using frontpage slideshow version 3.0.2

Thanks for the guide to go to the module


: Re: Dropdown menu hidden behind frontpage slideshow
: pmiddleton April 07, 2012, 06:06:57 AM
That's the same thing. I hadn't read the full reference. Glad you found it.