I was wondering if you can tell me how I can move the "add new comment" link that appears under nodes from the right side of the page to the left. Nice theme by the way.

Ryan

Comments

derjochenmeyer’s picture

Responsible for the alignment of this link is the following entry inthe style.css

style.css (line 536)

.node .links ul.links li, .comment .links ul.links li {
  float:right;
  padding-left:1em;
}

you can change the alignment to left for aligning all links left (padding left would look better 0 too then)

or specifically for "Add new comment" link, add this to your style.css

.comment_add {
  float:left;
  padding-left:0;
}
rjdempsey’s picture

Status: Active » Fixed

Thank you so much.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

silverwing’s picture

Closing comments (due to spam)