Hi,
Try to add !important after each style entry like for example;
.widget {
border: none !important;
}
that’s within your child theme.
You’ve got a couple of syntax errors in your child theme’s stylesheet. First, you’ve accidentally omitted the closing bracket in the #site-title section (starting on line 11), which is causing the #site-description section to be ignored. You’ve also got the wrong selectors for both of those sections. Try .site-title and .site-description instead.
On line 61, you’ve forgotten to close the comment, so everything after that line is being treated as a comment and ignored. Line 61 should be something like this:
/*----*/
Stephencottontail, thank you! Your second and third suggestions cleared everything up. CureWP, I appreciate your quick reply, and I did add “!important” to the entries.. it didn’t do anything this time, but it can’t hurt to have it there for the future.
I wonder if I could ask one more question. As you can see, I’ve altered the child style.css to create an underline on any link when I hover the cursor. As you can also see, it works on most of the links, but NOT on the post titles, and I can’t figure out why.
You’ll have to be a bit more specific to catch the post titles:
.blog .post h2 a:hover {
text-decoration: underline;
}
Yep, that did the trick. Thanks again, stephencottontail