Jump to content


Photo

Menu Dropdown Está Indo Pra Atras Da Div De Conteúdo


  • Faça o login para participar
12 replies to this topic

#1 Viana Patricio

Viana Patricio

    Novato no fórum

  • Usuários
  • 4 posts
  • Sexo:Masculino
  • Localidade:Rio de Janeiro - São gonçalo

Posted 09/10/2010, 22:24

Estou com um grande problema, lógico que vindo do IE6.
no FF funciona legal,
é um menu dropdown, que no IE6 insiste em ficar atras da div de conteúdo
quando exibido ele vai pra tras da div de conteudo
já no FireFox ele exibe normalmente...
se alguem puder ajudar ficarei agradecido isso ta quebrando minha cabeça


Posted Image
Posted Image
abaixo o css da class do menu que criei
CSS
.menu {	margin: 0 auto;
	padding: 0 0 0 12px}

.menu ul {	margin: 0 auto;
	padding: 0px}
	
.menu li
	{	float: left;
		list-style: none;
		font: 11px verdana;
		padding:0;
		margin:1px;}

	.menu li a
	
	{	
	font:11px Arial, verdana;
	display: block;
		background: url(../img/bt-menu.png) repeat-x;
		padding: 10px 20px;
		text-decoration: none;
	    width: auto;
		color: #EAFFED;
		white-space: nowrap;
		height:auto;}
.menu li a:hover
	{
	color: #EAFFED;
	background: url(../img/bt-menu-h.png) repeat-x;}
	.menu li a:visited
	{
	color: #EAFFED;}
.menu li ul
		{	
		
		margin: 3px 0 0 0;
			padding: 0;
			position: absolute;
			visibility: hidden;
			
			}
.menu li ul li
		{	
			
			float: none;
			display: inline;
			margin: 0;
			padding: 0;}
			
.menu li ul li a
		{	
		font:11px Arial, verdana;
		text-align:left;
		border:1px solid white;
		width: auto;
        padding: 5px 20px;
        background: url(../img/bt-menu.png) repeat-x;
		margin:0;}

		
.menu li ul li a:hover
{	background: url(../img/bt-menu-h.png) repeat-x;}

#container {
clear:both;
padding:0;
margin:0 auto;
width:auto;
height:auto;
text-align:center;



}



Aqui vai o código do script

<script type="text/javascript">
var timeout    = 500;
var closetimer = 0;
var ddmenuitem = 0;

function jsddm_open()
{  jsddm_canceltimer();
   jsddm_close();
   ddmenuitem = $(this).find('ul').css('visibility', 'visible');}

function jsddm_close()
{  if(ddmenuitem) ddmenuitem.css('visibility', 'hidden');}

function jsddm_timer()
{  closetimer = window.setTimeout(jsddm_close, timeout);}

function jsddm_canceltimer()
{  if(closetimer)
   {  window.clearTimeout(closetimer);
      closetimer = null;}}

$(document).ready(function()
{  $('#jsddm > li').bind('mouseover', jsddm_open)
   $('#jsddm > li').bind('mouseout',  jsddm_timer)});

document.onclick = jsddm_close;



</script>


Ja agradeço desde já quem puder me ajudar !!

#2 Guilherme Vieira

Guilherme Vieira

    Normal

  • Usuários
  • 113 posts
  • Sexo:Masculino
  • Localidade:Fortaleza, Ceará
  • Interesses:Desenvolvimento Web baseado nos padrões do W3C, HTML5, CSS3, PHP, JavaScript, jQuery, AJAX, SQL, MySQL.

Posted 10/10/2010, 18:23

Ce pode postar o HTML do menu, pra gente analisar?
Guilherme Vieira
g.

PS: Te ajudei? Me dá ponto! ^^

#3 Viana Patricio

Viana Patricio

    Novato no fórum

  • Usuários
  • 4 posts
  • Sexo:Masculino
  • Localidade:Rio de Janeiro - São gonçalo

Posted 10/10/2010, 19:15

Ce pode postar o HTML do menu, pra gente analisar?


Guilherme... valeu pela antenção
o Script é esse

<script type="text/javascript">
var timeout    = 500;
var closetimer = 0;
var ddmenuitem = 0;

function jsddm_open()
{  jsddm_canceltimer();
   jsddm_close();
   ddmenuitem = $(this).find('ul').css('visibility', 'visible');}

function jsddm_close()
{  if(ddmenuitem) ddmenuitem.css('visibility', 'hidden');}

function jsddm_timer()
{  closetimer = window.setTimeout(jsddm_close, timeout);}

function jsddm_canceltimer()
{  if(closetimer)
   {  window.clearTimeout(closetimer);
      closetimer = null;}}

$(document).ready(function()
{  $('.menu > li').bind('mouseover', jsddm_open)
   $('.menu > li').bind('mouseout',  jsddm_timer)});

document.onclick = jsddm_close;



</script>


o Html que envolve o menu e conteudo é esse
<div id="navmenu"><ul class="menu"><li id="current" class="active item1"><a href="http://localhost/Joomla/"><span>Home</span></a></li><li class="parent item2"><a href="/Joomla/index.php?option=com_scheduler&amp;view=scheduler&amp;Itemid=2"><span>Calendário</span></a><ul><li class="item5"><a href="/Joomla/index.php?option=com_jce&amp;view=popup&amp;Itemid=5"><span>ASW</span></a></li><li class="item6"><a href="/Joomla/index.php?option=com_newsfeeds&amp;view=categories&amp;Itemid=6"><span>Pontes partidas</span></a></li></ul></li><li class="item3"><a href="/Joomla/index.php?option=com_jdownloads&amp;view=viewcategories&amp;Itemid=3"><span>Downloads</span></a></li></ul>

	</div>

   <div id="container">


#4 Guilherme Vieira

Guilherme Vieira

    Normal

  • Usuários
  • 113 posts
  • Sexo:Masculino
  • Localidade:Fortaleza, Ceará
  • Interesses:Desenvolvimento Web baseado nos padrões do W3C, HTML5, CSS3, PHP, JavaScript, jQuery, AJAX, SQL, MySQL.

Posted 10/10/2010, 20:53

Se já estiver online manda um link, poruqe aqui nao funcionouno firefox.
Guilherme Vieira
g.

PS: Te ajudei? Me dá ponto! ^^

#5 Viana Patricio

Viana Patricio

    Novato no fórum

  • Usuários
  • 4 posts
  • Sexo:Masculino
  • Localidade:Rio de Janeiro - São gonçalo

Posted 10/10/2010, 21:23

coloquei ele online para voce me ajudar...
http://www.vipartesite.com/

coloquei ele online para voce me ajudar...
http://www.vipartesite.com/



se você tiver algum estilo de menu dropdown, com jQuery que esteja funcionando legal e de fácil entendimento posso tentar substituir, me manda por email suezinho@hotmail.com
valeu abraços!

#6 Guilherme Vieira

Guilherme Vieira

    Normal

  • Usuários
  • 113 posts
  • Sexo:Masculino
  • Localidade:Fortaleza, Ceará
  • Interesses:Desenvolvimento Web baseado nos padrões do W3C, HTML5, CSS3, PHP, JavaScript, jQuery, AJAX, SQL, MySQL.

Posted 10/10/2010, 21:46

tenta o seguinte: na div#container adiciona a propriedade
z-index:0;
e em .menu li ul adiciona
z-index: 10;
nao sei se funciona porque z-index é só pra absolute e #container nao estácomo absolute, e tb nao sei se IE6 suporta essa prorpiedade, mas tenta aí. Aliás, é só o IE6 que dá problema,o IE7 funciona legal ^^.
Tenta aí.
Guilherme Vieira
g.

PS: Te ajudei? Me dá ponto! ^^

#7 Viana Patricio

Viana Patricio

    Novato no fórum

  • Usuários
  • 4 posts
  • Sexo:Masculino
  • Localidade:Rio de Janeiro - São gonçalo

Posted 12/10/2010, 10:05

tenta o seguinte: na div#container adiciona a propriedade

z-index:0;
e em .menu li ul adiciona
z-index: 10;
nao sei se funciona porque z-index é só pra absolute e #container nao estácomo absolute, e tb nao sei se IE6 suporta essa prorpiedade, mas tenta aí. Aliás, é só o IE6 que dá problema,o IE7 funciona legal ^^.
Tenta aí.



valeu por tentar ajudar, mas infelizmente não adiantou nada...
coloquei os z-index que vc falou , mas nem alterou nada....

#8 HaroNism

HaroNism

    Super Veterano

  • Usuários
  • 15385 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 19/09/2017, 01:29

Levitra 10mg Preise online pharmacy Propecia Mental Side Effects Noticed
Kamagra Gelatina Orale 25 Mg Amoxicillin To Treat A Sinus Infection
Amoxicillin Suspension Kids Better Tasting Flavor <a href=http://cialtobuy.com>cialis</a> Priligy Presentacion
Baclofene Decontractant Musculaire cialis Levitra Packungsgro?Enverordnung
Trusted Rx Pharmacy Priligy Generic
Isotretinoin Order <a href=http://cialtobuy.com>cialis</a> Online Provera Get Pills With Free Shipping Store
Kamagra 100mg cialis Nursing Dogs And Amoxicillin
Cheapest Viagra Prices Online Rhine Inc In India
Kamagra4less <a href=http://cialtobuy.com>generic cialis</a> Comprar Cialis Online En Espana

#9 HaroNism

HaroNism

    Super Veterano

  • Usuários
  • 15385 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 05/10/2017, 04:24

Come Acquistare Il Cialis Propecia Pas Cher Rapide Levitra Effet viagra Robaxin
Cytotec Sur Internet levitra. brand name bayer.. 20 mg. Tadalafil 20 Kaufen Viagra 50

#10 HaroNism

HaroNism

    Super Veterano

  • Usuários
  • 15385 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 12/10/2017, 13:50

Why Cephalexin In Dogs Cialis Y Viagra Juntos Buy Overnight Direct Zentel Tab Amex Fedex C.O.D. viagra Online Doctor Viagra Augmentin
Drugstore Europa Order Keflex Online viagra Precios Cialis 10 Mg Buy Cialis Generic Online
Online Apotheke Tamoxifen Sildenafil Citrate No Prescription Rx Pills 40 mg levitra pills on line for sale Viagra Generico Con Receta

#11 aapedlok

aapedlok

    24 Horas

  • Usuários
  • 450 posts
  • Sexo:Masculino
  • Localidade:Alpharetta

Posted 13/10/2017, 09:52

Discounts! online product reviews progect13.jpg Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked! If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included). buy.png READ MORE Flex Cable Microphone USB Charge Board for Lenovo A850 ( $3.54 )Fashion Women Messenger Bags Handbag Waterproof Nylon Shoulder Bag Crossbody Bags For Women Casual Tote bolsa feminina Ladies ( 26.59 $)R3 80w 9600lm car h7 led headlight h1 h3 h4 h8 h9 h11 9005 hb3 hb4 9006 xenon white 6000k r3 xhp-50 car led headlight bulb ( 46.00 $)Tcbsg bikinis 2016 sexy swimwear women swimsuit push up brazilian bikini set bandeau summer beach bathing suits female biquini ( 21.32 $)La Diamantine 5 Glass Beads Bracelet ( 70.00 $)Moving Head Laser Projector Sound Lights Digital RGB LED Crystal Magic Ball RGB Stage Effect Light Disco Home Entertainment ( 20.09 $)NirLauncher skachat besplatno NirLauncher 1.19.118Flying B Bottle Stopper ( 55.00 $)Solid color backless v-neck halter women's one-piece swimwear ( 8.05 $)St.Barth Black Perforated Nubuck and Leather Belt ( 195.00 $)Raspberry Pi B+ Compatible Upgrade Edition Acrylic Case Protective Box Built in Fan Hole ( $5.62 )AUSDOM M08 Bluetooth 4.0 Stereo Headset-64.99 $Womens Ivory Unlined Italian Leather Gloves ( 82.00 $)Stylish flip flop and rhinestones design women's sandals ( 40.89 $)RC Helicopter JXD 509 509W 509G RC Drone 2.4G Headless Mode One Key Return 5.8G FPV RC Quadcopter With HD Camera VS U842 H11D ( 75.00 $) 294.jpg
Discounts! top facial products

progect13.jpg
Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).

buy.png

READ MORE
Very good quality hip hop hoodies fleece men streetwear warm winter mens kanye west hoodie sweatshirt ( 45.00 $)
Owlprincess Sexy Hollow out Strappy Front Women Plus Size Lace Up Causal Short Sleeve Shirt Women Blusas Lady Tops Black Blouse ( 7.47 $)
IP65 Water Resistant DC 12V 5m 24W SMD3528 300 LEDs LED Light Strip ( $6.41 )
Lenovo ZUK Z2 64GB ROM 4G Smartphone-320.98 $
Best Sale Non-Toxic Hair Chalk Temporary Hair Dye Color's Soft Pastels Salon Hair Color Set Kit (24 PCS) ( 4.52 $)
1PC 4 Color Size0-Size5 Fishing Hard Lure Bait Leurre Peche Mepps Spoon Fishing Tackle Vissen Pesca Acesorios ( 2.54 $)
Eye Bangle Bracelet ( 145.00 $)
Silicone case for huawei p9 p 9 p9 lite p9lite phone case silicon luxury soft cover ( 3.88 $)
90w 11700lm with genuine philips chip car led headlight kit set h1 h3 h4 h7 h9 h11 9004 9005 hb3 9006 hb4 9007 hb5 9012 h13 9008 ( 72.98 $)
Paisley Print Silk Ascot ( 52.00 $)
HomeX.ru Internet shop of construction and finishing materials in Moscow and Russia
&quot;Pogoda 24&quot;: deficit elektroenergii na Ukraine
Men Women PU Travel Cosmetics Bag Organizer Zipper Wash Toiletry Large Capacity Multifunction Storage Bag MakeUp Bag ( 4.97 $)
Lady fashion dress shoes genuine leather bridal wedding shoes homecoming party prom shoes rhienstone mother of the bride shoes ( 108.36 $)
Brazilian virgin hair with closure deep wave human hair bundles with lace closure brazilian virgin hair 4 bundles with closure ( 84.00 $)


79.jpg

#12 HaroNism

HaroNism

    Super Veterano

  • Usuários
  • 15385 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 29/10/2017, 23:53

Levitra Orosolubile Fiche Baclofene Medicamentos Cialis cialis Best Place To Buy Propecia Online Canada Cialis 20mg 12 St Preisvergleich Amoxil Orale
Vente Cialis Levitra Amoxicillin For Bacteria In Intestines Alergy To Amoxicillin viagra online prescription Avis Cialis Viagra
Baclofen viagra Viagra Bestellen Eu

#13 HaroNism

HaroNism

    Super Veterano

  • Usuários
  • 15385 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 17/11/2017, 21:30

Cephalexin 500mg Cap Ranbaxy Kamagra Kautabletten Erfahrungen Pharmacy Onlline Store generic cialis Avamigran Lasix Purchase Online
Zithromax Coverage But Generic Lexapro Online Cheap generic cialis Itching Caused By Amoxicillin
Amoxicillin Suspension Dosage For Cat Cheap Pills Without A Prescription Amoxicillin Clavulanate Rash online pharmacy Viagra Fettes Essen




1 user(s) are reading this topic

0 membro(s), 1 visitante(s) e 0 membros anônimo(s)

IPB Skin By Virteq