To get rid of the space between the comment bar and date you need to change this css style:
Code:
.post {
position:relative;
width:490px;
0 0 60px 15px;
}
and replace the '60px' with how much space you want. I would say 10-20px would be fine
With the links you need to change:
Code:
.BlogArchive #ArchiveList ul li {
background: none;
list-style: none;
list-style-image: none;
list-style-position: outside;
border-width: 0;
padding-left: 15px;
text-indent: -15px;
margin: .25em 0;
background-image: none;
}
and change the: margin: .25em 0; to something like margin: .25em 100px;
NOTE: The first css style '.post' is located on the actual page but the second; '.BlogArchive #ArchiveList ul li' is located in a widget css file: 3270118147-widget_css_bundle.css which you should be able to access.
Bookmarks