Hi!
You have to change som paramteres in the style.css file.
To minimaze the spaxe between the title and the entry search for this:
.hentry {
margin: XXpx 0 35px;
position: relative;
}
Replace the XX with a spacing you find comfortable. I’m using 10px on my site.
Changing colors are a more quirky operation I think. First look for this, wich will alter the colors of your dynamic meta content:
.entry-meta a, .comment-meta a {
color: XXX;
}
Replace the XXX with the color of your choice.
To change the colors of the static meta information you have to look for this:
.entry-meta { /* Time and category for blog entries */
font-size: 1.2em;
line-height: 1.3em;
display: block;
margin-top: 1px;
color: XXX;
background: #444;
}
Change the XXX to the color you wish for.
If you set up the same color both places the whole line will ofcourse will have the same color.
Have fun!