Hey Clayton,
My problem was that I didn’t know how to get to my theme’s master stylesheet & I had no idea about child themes. It took me awhile to figure out ??
I have another question though, if you’re still around: I created a child theme and imported the master stylesheet in it. But there’s code from the imported stylesheet that I want to DELETE. I copy+pasted the part of the master stylesheet that I deleted lines of code from, but it’s not showing up on my webpage (and I already activated the child theme). My current code is this:
/*Override Master Post Header
---------------------------------------*/
.entry h2.title {
font-size: 1.6em;
margin: 0;
padding: 0 0 10px 0;
}
.entry h2 a:link, .entry h2 a:visited {
color: #444;
text-shadow: 0 1px 0 #fff;
}
.entry h2 a:hover { color: #285a86; }
}
a:hover img.index-post-thm { -moz-transform: rotate(-2deg); -
webkit-transform: rotate(-2deg); }
}
I edited that from the master stylesheet that looks like this:
/*Post Header
---------------------------------------*/
.entry h2.title {
font-size: 1.6em;
margin: 0;
padding: 0 0 10px 0;
}
.entry h2 a:link, .entry h2 a:visited {
color: #444;
text-shadow: 0 1px 0 #fff;
}
.entry h2 a:hover { color: #285a86; }
.post .date {
position: absolute;
left: -93px;
width: 73px;
height: 73px;
text-align: center;
background: rgba(0, 0, 0, .15);
}
.post .date div {
font-size: 1.3em;
color: #efefef;
font-weight: bold;
letter-spacing: 2px;
}
.post .date .day {
margin-top: 15px;
font-size: 2.4em;
}
.post .date .month {
text-transform: uppercase;
font-weight: normal;
color: #ccc;
}
a:hover img.index-post-thm { -moz-transform: rotate(-2deg); -webkit-transform: rotate(-2deg); }
The code I deleted from the master stylesheet creates a date section on my category pages. I wasn’t able to figure out how to delete sections form the master stylesheet (in the child theme) without just editing/adding code.
Thanks again for your help.