![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Edit: I had some free time today and spent a long time just poking around with my layout and using trial-and-error to fix it up. I'm adding my updated CSS in case someone has similar problems.
I can't find the bit in my code that will let me do the following things:
1. Change the font family for links in the box that appears when you reply to a post (not the quick reply, the form that appears on the comments page), specifically the "Icon" and username. For some reason, my code works only when I hover over the links. Edited the
2. Modify the "Flat | Top-Level Comments Only" text at the bottom of the page. I want to add a background to it. The code I used to try and address #1 apparently also affected the font here (i.e. change when I hover over it). I found a different customized layout which had code that addressed this part. This is the bit of CSS I added to modify this part:
3. Add padding to all the buttons like "Post Comment" or "Perform Action." Or at least make the font smaller since they look really cramped in their boxes. Added padding to the
4. Change the font family for the quick reply textarea. Found the solution in the comments of this post and just played around with the code.
Any help would be much appreciated!
Old CSS:
CSS with solutions:
I can't find the bit in my code that will let me do the following things:
a, a:link, a:visited
part of my code to the following:a, a:link, a:visited {
text-decoration: none;
font-family: 'Alike', 'New York', Georgia;
}
input
part of the code.input {
background: transparent;
border: 1px solid #333333;
color: #333333;
padding: 3px 3px 3px 3px;
}
Any help would be much appreciated!
Old CSS:
CSS with solutions: