• 0

CSS: images slideshow?


Question

13 answers to this question

Recommended Posts

  • 0

Yep, innerfade is great. I use it as well :yes:

Especially for the advertisements. That's the most easiest jQuery slideshow plug in to use.

Link to comment
Share on other sites

  • 0

Guys I have a new issue with the navigation on top. I have a drop down menu and now I can't see it because the slideshow its in front interrupting the drop down menu. How I can fix this new issue? I attached the website.

mockup.zip

Link to comment
Share on other sites

  • 0

Guys I have a new issue with the navigation on top. I have a drop down menu and now I can't see it because the slideshow its in front interrupting the drop down menu. How I can fix this new issue? I attached the website.

Find #menu li ul in the website.css file. Then add in z-index: 999;

#menu li ul	{
	position: absolute;
	width: 100%;
	left: -999em;
	margin-top: 30px;
	z-index: 999;
}

Link to comment
Share on other sites

  • 0

Find #menu li ul in the website.css file. Then add in z-index: 999;

#menu li ul	{
	position: absolute;
	width: 100%;
	left: -999em;
	margin-top: 30px;
	z-index: 999;
}

It works, thanks a lot, I appreciate it!

Link to comment
Share on other sites

  • 0

Not sure this is a helpful post but:

Minor - You've got a spare </div> at line 83 you can delete (not that it's affecting anything). And why have you got so many Stylesheets?

To make it work though:

#main_pictures {
	float:left;
	height:344px; 
	width:593px;
	position: relative; 
	z-index: -1;

I added the last 2 lines of code there. Hope that helps

edit/See I was beaten to it :p

Link to comment
Share on other sites

  • 0

Not sure this is a helpful post but:

Minor - You've got a spare </div> at line 83 you can delete (not that it's affecting anything). And why have you got so many Stylesheets?

To make it work though:

#main_pictures {
	float:left;
	height:344px; 
	width:593px;
	position: relative; 
	z-index: -1;

I added the last 2 lines of code there. Hope that helps

edit/See I was beaten to it :p

Thanks also for your contribution. The reason I have many styles its because someone in here was working in another site and I just try to incorporate these styles to the site I am working on.

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.