WordPress Tag Design
Tweet Follow @3pixelssolution
use this code for show Tag without comma
[php]
<div class="tagsContainer">
<?php if (get_the_tags()) :?> <p class="tags">Tags: <?php the_tags(”, ‘ ‘, ”); ?></p> <?php endif;?>
</div>
[/php]
and use this code for show Tag without comma
[php]
<?php the_tags( ‘Tags: ‘, ‘, ‘, ‘
‘ ); ?>
[/php]
Css class
[css]
.tagsContainer {
margin: 20px 0;
}
.tagsContainer p {
color: #55606f;
font-family: futuraLTBold;
font-size: 18px;
margin-bottom: 20px;
}
.tagsContainer a {
background: rgba(0, 0, 0, 0.05) none repeat scroll 0 0;
color: rgba(0, 0, 0, 0.6);
display: inline-block;
font-family: HelveticaNeue;
font-size: 16px;
line-height: 40px;
margin: 5px 5px 5px 0;
padding: 0 10px;
white-space: nowrap;
}
.tagsContainer a:hover {
background-color: #ccc;
}
[/css]