I am using 1.5 files, accordian widget with images as
content. when changing panels, the content flashes strongly.
Distracting.
try this link:
http://www.jwcooper.com/NEWLOOK_edge_prod.html
How can i stop this? If i try “easing” or duration changes,
how do i do this? examples suggest “passing on” to constuctors and
things, but what does that mean?
Would i change the actual js file, or add code to the page?
If there is a process described for “passing on to constructors”
please direct me to this for my understanding.
thanks|||
You didn’t say what browser you are using, so I’m guessing
that it is flashing in IE? Your pages seem to look fine in the
other browsers.
Try specifiying a full doctype to prevent IE from going into
“Quirks Mode”. Your doctype header currently looks like this:
<!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01
Transitional//EN”>
<html>
Try using:
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01
Transitional//EN” ”
http://www.w3.org/TR/html4/loose.dtd”>
<html>
or:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0
Transitional//EN” ”
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”
http://www.w3.org/1999/xhtml”>
Regarding your questions about constructors, take a look at
this document, and hopefully it will answer some of your questions:
http://labs.adobe.com/technologies/spry/articles/accordion_overview/in dex.html
–== Kin ==–
|||
Thank you for the suggestion. The second doc type
specification solved the issue in IE7 for me.
Doc produced in DW CS3, I aslo use GoLive CS3.
Should I change all my docs to this specification?
When using GoLive to change doc type, the xhtml coversion
does not add the “html xmlns=”
http://www.w3.org/1999/xhtml”>
Can this be done in the programs for new docs or does it have
to be done manually?
Related posts:
- cfinput type="checkbox" default value not posting
- Collapsible panel
- Multiple head tags on instance pages
- Multiple head tags on instance pages
- Assign a value for each Spry Tabbed Panel
Related posts brought to you by Yet Another Related Posts Plugin.