Log in

View Full Version : Need help on a vBadvanced Issue


JWL
08-03-2006, 03:48 PM
No one seems to want to answer a question or diagnose this issue on the vBadvanced forum

Anyway

The Senareo
On my development site I am testing with. VBA is installed and I have a bbcode Module as the center module. In this Module I use an iframe tag to pull a html page. In the html / iframe page is a flash file that gives some info and such for the site.

Problem
The QLinks (QuickLinks) Drop down when click drops down Behind the Flash in the BBcode Module Here is a Pic
51430

As you can see the Drop down Falls Behind the Module or Flash. I believe the issue is that the code for the BBcode Module / HTML TAG is stating the Module to Stay on top, Causing this effect. I do not know how to fix it let alone where to look....

Anyone please with an idea I would be greatful

Also this happens in every theme, both IE and FireFox I am testing

URL = www.riderdown.org/VBdev
you do have to log in to see the qlink.

peterska2
08-03-2006, 05:15 PM
please provide details of a test account in order for this to be viewed.

JWL
08-07-2006, 06:11 PM
you can login in using the test user ***** pw is *****

Login is at www.riderdown.org/VBdev

Thanks

peterska2
08-07-2006, 06:12 PM
<a href="https://vborg.vbsupport.ru/showthread.php?t=118224" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=118224</a> should help

JWL
08-07-2006, 06:44 PM
https://vborg.vbsupport.ru/showthread.php?t=118224 should help

Thanks

Tried each and not working yet still falls behind the page.

Thanks

Tried each and not working yet still falls behind the page.

That works now had to add the following:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
<param name="wmode" value="transparent">
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="666666">
<tr>
<td><div align="center">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="750" height="500">
<param name="wmode" value="transparent">
<param name="movie" value="main.swf">
<param name="quality" value="high">
<embed src="main.swf" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="750" height="500"></embed>
</object>
</div></td>
</tr>
</table>
</script>
</body>
</html>