Here is a little css problem

The code:

     printf( '<div id="replyto">Reply to</div>
    <a class="replytolink" href="%1$s">%2$s %3$s</a>',
 $parent_link, $parent->comment_author, $parent->comment_date );

The css:

#replyto {
        float: left;
}
.replytolink {
        float: left;
}

is output

Reply to"Comment author Date"

How can I output it

Reply to "Comment author Date"

with correct spacing between text and link?

link|improve this question

feedback

5 Answers

up vote 0 down vote accepted

From a semantic point of view, using a floating div followed by an anchor isn't the best choice possible of tags in this case.
Personally, I would replace that div with a span, then you wouldn't need to float them, and so word spacing would work as usual..

link|improve this answer
Thank you. Your suggestion works like a charm! No style is needed! – sarytash Feb 8 at 17:33
feedback

Try this:

.replytolink {
    padding-left:5px;
    float: left;
}

Example: http://jsfiddle.net/RTFb7/

link|improve this answer
Thank you. See my reply above. – sarytash Feb 7 at 23:13
And thanks for the jsfiddle thing! – sarytash Feb 7 at 23:16
feedback

Add a padding-right to #replyto:

#replyto {
        float: left;
        padding-right:5px;
}
link|improve this answer
Thank you. See reply above. – sarytash Feb 7 at 23:12
feedback

Add a space?

printf( '<div id="replyto">Reply to </div><a class="replytolink" href="%1$s">%2$s %3$s</a>', $parent_link, $parent->comment_author, $parent->comment_date );

Or add padding-right: 2em on #replyto.

link|improve this answer
I tried adding blank spaces but it makes no difference. Is 5px consistent with empty space between words regardless of font, font size etc? – sarytash Feb 7 at 23:12
you could use padding-right:2em; or similar for relative spacing, just a thought really. – Danjah Feb 7 at 23:15
5px is perfectly acceptable with normal font-size, but if the font-size is large the space needs to be adjusted. I guess it's not worth to break my back over this though. – sarytash Feb 7 at 23:30
@sarytash, following Danjah's advice, I've updated my post. 2em (adjust as necessary) should work nicely. – primatology Feb 8 at 1:15
Thank you primatology! – sarytash Feb 24 at 14:01
feedback

Solution by Lucius:

printf( '<span>reply to <a href="%1$s">%2$s %3$s</a></span>', $parent_link, $parent->comment_author, $parent->comment_date );

Neat. No CSS is required. Give the <span> tag an ID if needed. The extra blank space after "reply to " is now output.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.