This is the blog;
http://mrsdalrymple.com/
I want to make the " |2 COMMENTS" more visible at the bottom of the page by changing the link color as well as the size. I've looked through the code and I see it's h3, but every time I try and add a tag to change the size there is a global effect preventing me.
posted in ENTERTAINMENT, FOOD, HOME & GARDEN, STYLE | 2 COMMENTS
Here is the pastebin of the style.css;
http://pastebin.com/UE8xG1Hx
Try adding something like:
.comments-link a {
font-size:1.2em;
color:#c00;
display:inline-block;
}
adjusting the size and text values to suit.
Does it matter where I put that code in or can I just place it in a generic stop in the stylesheet?
Scratch that, I added it in. It is increasing the text size but it is still green like the rest of the links.
It just needs a little tweaking. Try:
.comments-link a {
font-size:1.6em;
}
.entry-utility .comments-lin a {
color:#c001;
}
Did you spot and amend the possible typo in Esmi's code?
.comments-link a {
font-size:1.6em;
}
.entry-utility .comments-link a {
color:#c001;
}
Ah there we go, thanks greatly. :)
Would either of you happen to know how would I position the date above the title entry?