Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/10/2008, 08:54
American2010
 
Fecha de Ingreso: abril-2003
Mensajes: 1.129
Antigüedad: 21 años
Puntos: 34
2 estilos de links en una misma linea

2 Links distintos en una misma linea...

¿Me ayudan a ver como lo hago?

Como se ve ahora los links en cuestion es así...



Yo quisiera que se vean así

Zendoku Sin Comentarios

Si bien se me ocurre que la solucion sería crearle 2 nuevos divs, no estoy seguro...

Les dejo los códigos de todo lo que entra en juego para mostrar eso en pantalla...

Esto en el sidebar que lo presenta en pantalla
Código PHP:
<div id="tab1" class="tabcontent">
<ul>
<?php query_posts('showposts=5&orderby=date'); ?>
<?php 
while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> &bull; <?php comments_popup_link('Sin Comentarios''1 Comentario''% Comentarios'); ?></li>
<?php endwhile; ?>
</ul>
</div>
Y en style.css lo relacionado con ese div estaría aca
Código PHP:
.tabcontent {
    
displaynone;
    
background#FFF url(images/tabtop.gif) no-repeat top;
    
border1px solid #eee;
    
border-top0;
    
padding-top15px;
    
padding-left10px;
    
padding-right10px;
    
padding-bottom5px;
    
overflowhidden;
    
font-size11px;
}

.
tabcontent a, .tabcontent a strong {
    
color#2c78b9;
    
line-height1.4em;
    
font-size14px;
}

.
tabcontent a:hover, .tabcontent a:hover strong {
    
color#5ea2e7;
}

.
tabcontent ul li {
    
displayblock;
    
backgroundurl(images/bullet.gifno-repeat;
    
background-positionleft 5px;
    
border-bottom1px dotted #ddd;
    
padding-bottom5px;
    
margin-bottom5px;
    
padding-left20px;
    
color#999;
    
line-height1.4em;
    
font-size11px
}

.
tabcontent ul li a {
    
color#2c78b9;
    
line-height1.4em;
}

.
tabcontent ul li a:hover {
    
color#5ea2e7;
}

.
tabcontent ul li span {
    
displayblock;
    
color#999;
}
/***************** CSS For TAB Content *******************/
@media print {
    .
tabcontent {
    
displayblock !important;
    }