I updated X, Cornerstone, etc. Cleared caches. Now the Global CSS I had added for classic text elements isn’t being recognized. Any suggestions? Here are two examples:
1) the wrong H2 size
(Global CSS says it should be:
.x-text h1, h2, .h1, .h2 {
font-size: 22px;
}
2) The wrong formatting of meta data
Global CSS says it should be:
/* author name italics for Renew stack */
.p-meta span:first-child {
font-style: italic;
}
/* don’t italicize the slash after the author name */
.p-meta span:first-child:after {
font-style: normal;
}
/* remove the forward slash after the author name /
.p-meta span:nth-child(2),
/ remove Leave Comment /
.p-meta span:nth-child(4),
/ remove the forward slash after the category name */
.p-meta span:nth-child(3):after {
display: none;
}
.h-landmark span, .entry-title.h-landmark span {
word-spacing: 8px;
letter-spacing: 1px;
}