Ver Mensaje Individual
  #5 (permalink)  
Antiguo 17/06/2009, 07:26
Avatar de ACALU
ACALU
 
Fecha de Ingreso: marzo-2008
Ubicación: Malaga
Mensajes: 123
Antigüedad: 16 años, 1 mes
Puntos: 0
Respuesta: Espacio entre parrafos en las listas (viñetas)

La direccion del blog es: acalu.es

El trozo del archivo style.css donde he identificado 2 codigos (en color azul) con lista es este:

Código:
/* Header, Topbar and Navbar */

#header h1 {
	font-size: 45px;
	font-weight: bold;
	font-family: georgia;
	text-transform: uppercase;
	margin-bottom: 18px;
	padding: 10px;
	text-align: right;
	border-bottom: 1px solid #000;
	}
		
#header a, #header a:hover {
	color: #010101;
	text-decoration: none;
	}

#topbarmax {
	background: #000;
	}

#topbar span {
	margin-right: 10px;
	}

#topbar .icon{
	background: #000 url(images/feedicon.png) right no-repeat;
	margin-right: 5px;
	color: #3898F8;
	padding: 2px 18px 2px 0;
	}

#navbar {
	clear: both;
	margin: 6px 0 20px 0;
	max-width: 100%;
	min-width: 900px;
	position: relative;
	}

#navbar li a{
	font-size: 16pt;
	font-weight: bold;
	margin: 7px 0;
	padding: 0 3px 3px 3px;
	font-family: "Arial Narrow", Arial, Tahoma;
	text-transform: uppercase;
	}

#navbar li a:hover{
	text-transform: uppercase;
	padding-top: 6px;
	border-top: 3px solid #fff;
	background: #000;
	color: #fff;
	}

#navbar li {
	list-style-type: none;
	display: inline;
	margin-left: 3px;
	padding: 0 5px;
	}


/* Content */

#wrapper p, #wrapper ul, #wrapper ol {
	line-height: 1.5em;
	}
			
#wrapper ul li{
	list-style: square inside;
        margin-bottom: 15px;
	}

#wrapper h1{
	font-size: 36pt;
	font-weight: bold;
	padding: 10px 0 15px 0;
	letter-spacing: -1.5px;
	font-family: "Arial Narrow", Arial, Tahoma;
	line-height: 34px;
	color: #0F0F0F;
	}

#wrapper h2{
	font-size: 24pt;
	font-weight: bold;
	padding: 10px 0 15px 0;
	letter-spacing: -1px;
	font-family: "Arial Narrow", Arial, Tahoma;
	line-height: 34px;
	color: #0F0F0F;
	}

#wrapper p {
	margin-bottom: 10px;
	}

.post ol li {
	margin: 0 0 5px 25px;
	}

#wrapper small {
	font-size: 8px;
	font-family: Tahoma;
	}
El margin-bottom: 15px; como dije, lo añadi yo.

Un saludo y muchas gracias.