Trouble locating widget head style and more from Tarski stylesheet
-
Hello,
I use Tarski theme and have done a number of changes to the CSS but am having trouble
locating 2 things:• I’d like to delete the categories, tags and post date from under the Post Title but can’t find the specific line of code.
• I’d like to edit the style for the sidebar heads and have noticed that if I change the style for H3, the sidebar heads change slightly, but not completely. There seems to be a link between the 2 but can’t find the code for just the sidebar heads.
Here’s a link to the site: http://enoughgood.com
Thanks,
JaneThe blog I need help with is: (visible only to logged in users)
-
I’d like to delete the categories, tags and post date from under the Post Title but can’t find the specific line of code.
This will remove all of the post meta data, but that also includes the “Leave a comment” text. Will that work?
.post-metadata { display: none; } -
I’d like to edit the style for the sidebar heads and have noticed that if I change the style for H3, the sidebar heads change slightly, but not completely.
You can target just the Tarski sidebar headings by using “.widgets h3” as the selector. Here is an example:
.widgets h3 { color: red; font-family: monospace; font-size: 2em; }You can remove those properties and add whatever you’d like inside the block.
- The topic ‘Trouble locating widget head style and more from Tarski stylesheet’ is closed to new replies.