A little help needed on my blog template

Hello,

I am trying to solve the problem in my blog template, but honestly I’ve no clue how to do that and I’m currently requesting some help from the community.

  1. Could you let me know how to get rid of the unuse spacing below the post footer.
  2. A code to move the links to the center.

Thank you for your help.

  • The attachment is pending approval.

Hi Dennis Chen. Welcome to the forums. :slight_smile:

It’s hard to help with the code you gave, as it’s full of some kind of proprietary code that essentially means nothing displays on screen. Could you instead post the actual HTML that’s generated in the browser?

I’m sorry, I didn’t understand it quite well. Is this able to help you?

This is the page source: http://justpaste.it/23pe
This is the page template: http://justpaste.it/23ph
This is my blog page: www.cutelock.blogspot.sg

To get rid of the space between the comment bar and date you need to change this css style:

.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:

.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.

Hi Techd,

Thank you for your help, the code you gave me works for my blog.