Selina: Nav stylen

Beitrag lesen

Guten Abend,

ist es möglich meine Navigation so zu gestallten, dass ich vor die Aufzählungspunkte noch etwas Abstand bekomme? Also mehr vom Hintergrund sehe? Mit margin und padding erreiche ich da leider nichts.

So sehe ich es derzeit im Browser:

  
<nav class="subnav">  
<ul><li> <a href="/">Startseite</a></li></ul>  

  
.subnav {  
	display:inline-block;  
	width:22%;  
	vertical-align:top;  
	margin-right:1em;  
}  
  
.subnav ul {  
	margin:0;  
	padding: 0em 0em 0em 1.4em;  
	font-size:0.9em;  
	list-style-type:disc;  
	list-style-position:inside;  
	width:100%;  
}  
  
.subnav ul li {  
	padding: 15px 0 15px 0;  
	border-bottom: 1px solid #efefef;  
	border-top: 1px solid #fff;  
}  
  
.subnav ul li:hover {  
	background-color:#e7e7e7;  
}  
  
.subnav ul li a {  
	text-decoration:none;  
	color:#000000;  
}