Neat theme: How to remove the symbol before each post title
-
I have edited my blog’s theme using custom CSS and I’m mostly happy with the results. However, there are two things I haven’t been able to modify.
1. A symbol — three dots — appears on the left side of every post title. I would like to remove these. Here is the section in the original CSS:
/* Next’s that image before the post title */
img.lefth2img {
margin: 0;
padding: 0 5px 0 0;
}p img {
margin: 0 5px;
}.wp-smiley {
width: 15px;
height: 15px;I’m not sure, though, what needs to be changed. I’ve tried inserting a different image instead of img.lefth2img, and I’ve tried deleting this section altogether.
2. Immediately below each post title is the date it was published. In the original theme, this date appears to be rather small. I’m wondering how I can change the font/type-size of this date.
Thank you for your help.
The blog I need help with is: (visible only to logged in users)
-
This gets rid of the graphic before the post titles
img.lefth2img { display: none; }This will increase or decrease the date size. Edit as desired.
.post small { font-size: 100%; }On CSS here, what is best is to add only the specific selectors, and only the specific declarations that you are adding or changing and have “add to existing…” selected, and then those changes will override the original.
-
Wow — I wasn’t expecting such a speedy response.
Thanks for the info — everything worked perfectly!
-
- The topic ‘Neat theme: How to remove the symbol before each post title’ is closed to new replies.