Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Page working in IE 6 but no Firefox v1.5?

Status
Not open for further replies.

mfleming

Technical User
Jul 2, 2003
65
CA
I have been trying to create a page from my layout that uses an imaga gallery with on CSS using Ref Web page .


When I try to use it on my page IE 6 works but Firefox doesn't. (The text below the image div doesn't stay in the conntent div.


Also, with the image gallery how do I keep Image text information (ie description/title of photo with the current one. It only displays when I use the mouse over, but I want both if possible (one hides when hovering)

Any help would be great.

Thanks

Matt
 
You are explicitly setting the height of the container - so it won't stretch:

Code:
#contentColumn>#innerContentColumn
{
	height: 340px;	/* fix Opera 5 which breaks with the above IE fix */
}

Remove this, and it works just fine.

Hope this helps,
Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Yes it worked great. Thanks a lot for all your help.

Matt
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top