Child Theme style.css stopped working
-
Hi there,
Just moved my site from dev domain to main domain. Since then some of the changes in my child theme style.css won’t take hold/show up on the site.
I’ve tested by making changes in the parent style.css file and the changes happen. Or, using Firebug they change but not when I put them in the child style.css file. Any ideas?
And it’s only for some items I am adding, not all.
I can post my style.css file below. The elements in bold are the ones that won’t show up:
/*
Theme Name: Hueman Child
Theme URI: https://alxmedia.se/themes/hueman/
Description: Sample child theme for customization.
Author: Dorothy
Template: hueman
Version: 1.0.0
*/@import url(“../hueman/style.css”);
/* ————————————————————————- *
* Theme customization starts here
/* ————————————————————————- *//* Global */
.mystyle {}/* Tablet – 800px, 768px & 720px */
@media only screen and (min-width: 720px) and (max-width: 800px) {
.mystyle {}
}/* Mobile – 480px & 320px */
@media only screen and (max-width: 719px) {
.mystyle {}
}/* Mobile – 320px */
@media only screen and (max-width: 479px) {
.mystyle {}
}body { background: #eaeaea; font-size: 16px; line-height: 1.5em; color: #555; font-weight: 300; }
.entry h1 { font-size: 5.9vw; letter-spacing: -1px; }
.entry h2 { font-size: 2.5vh; letter-spacing: -0.7px; }
.entry h3 { font-size: 2.2vh; letter-spacing: -0.5px; }
.entry h4 { font-size: 2.0vh; letter-spacing: -0.3px; }
.entry h5 { font-size: 1.9vh; font-weight: 600; }
.entry h6 { font-size: 1.5vh; font-weight: 600; text-transform: uppercase; }#header .pad { padding-top: 2px; padding-bottom: 4px; }
.site-description {
font-size:16px;
font-style:italic;
padding:37px 0;.col-3cm .s1 { background-color: #fff }
.col-3cm .s2 { background-color: #fff; padding-left: 340px; padding-right: 260px }.entry.excerpt { color: #666;}
.post-tags {display: none !important;}
- The topic ‘Child Theme style.css stopped working’ is closed to new replies.