Correction – after a couple of minutes, I displayed my site again, and now the upshifting does not happen – there must be some periodic refreshing of files at my host.
So now my question becomes, what is the best practice to fix this in a way that will persist after an update to the theme. I know a tiny bit about creating a custom CSS. Do I add entries there with just the lines that I want to alter?
for instance, in Style.css I found this:
.site-navigation a {
color: #fff;
display: block;
text-transform: uppercase;
}
and I altered that to
.site-navigation a {
color: #fff;
display: block;
text-transform: none; /** uppercase */
}
Should I now, in my custom CSS file, enter this? (and restore orig Style.css)
.site-navigation a {
text-transform: none; /** uppercase */
}
Thanks, Erik