how to remove the bookmarks from the menu,

érika júlia May 25, 2019

I'm trying to make my own blog, but on my menu, I can not get the bookmarks, I've already used List-style-type: none; it's the List-style: none; and neither is going, I can not find the error. help me.

 

/* Inicio da formatação do menu*/
#nav {
font: normal 14px Arial, Helvetica, Sans-serif;
overflow: hidden;
background: #F08080;
list-style-type: none;

}
/*tirar marcadores*/
#nav ul {
margin: 0;
padding: 0;
list-style: none;
margin-left: 250px;

}
#nav ul li {
float: left;
}
/*cor da fonte*/
#nav ul li a {
float: left;
color: white;
padding: 10px 20px;
text-decoration: none;
background: #F08080;
}
/*cor quando passa mouse em cima*/
#nav ul li a:hover,
#nav ul li:hover > a {
color: black;
background: #F08080;
}
/*cor dos links de baixo*/
#nav li ul a:hover,
#nav ul li li:hover > a {
color: black;
background: #F08080;
}
#nav li ul {
background: #F08080;
left: -999px;
margin: 20px 0 0;
position: absolute;
width: 170px;
}

#nav li:hover ul {
left: auto;
}
/*estrutura das abas*/
#nav li ul a {-
background: none;
border: none;
margin-right: 0;
width: 53,3px;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}

#nav li li ul {
margin: -1px 0 0 160px;
visibility: hidden;
}

#nav li li:hover ul {
visibility: visible;

}
#nav ul ul li {
border-bottom: solid 1px #fff;
}

 

 

<div id='nav'>
<ul>
<li><a href='index.html'>Home</a></li>
<li><a href='#'>Downloads</a>
<ul>
<li><a href='#'>Lotes casas the sims 4</a></li>
<li><a href='#'>Lotes no CC the sims 4</a></li>
<li><a href='#'>Cômodos the sims 4</a></li>
<li><a href='#'>Lotes comunitários sims 4</a></li>
</ul>
</li>
<li><a href='#'>Sims</a>
<ul>
<li><a href='#'>Mulheres The sims 4</a></li>
<li><a href='#'>Homens The sims 4</a></li>
</ul>
</li>
<li><a href='cheats.html'>Cheats</a>
<ul>
<li><a href='#'>Cheats The sims 3</a></li>
<li><a href='#'>Cheats The sims 4</a></li>
</ul>
</li>
<li><a href='dicas.html'>Dicas</a></li>
<li><a href='ccshop.html'>CC Shop</a></li>
<li><a href='https://www.youtube.com/channel/UCdDoGEY6k8WbIMh2YlLXZVw'>YouTube</a></li>
<li><a href='quemsoumenu.html'>Quem Sou</a></li>
<li><a href='contato.html'>Contato</a></li>
</ul>
</div>

 

 

 

 

0 answers

Suggest an answer

Log in or Sign up to answer