I put this in the style.css but it didnt do anything
}
.entry-author-link,
.entry-permalink,
.entry-date,
.entry-meta,
display: none;
}
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
Then use its “CSS Code” section of the dashboard to hold your CSS modifications:
.entry-meta {
display: none;
}
installed the plugin, added the code to the custom css section, but still doesnt change anything…hmmmm
You were on the right track earlier, your syntax is a bit out of place. You can try to edit the code you referenced above, with the following changes, and make sure it is at the bottom of the file:
.entry-author-link,
.entry-permalink,
.entry-date,
.entry-meta {
display: none;
}
Note: the comma after .entry-meta was removed, and the opening brace was moved to follow after .entry-meta
made a child theme from Spun and tried to edit that style.css, and still nothing at all will change. Is there some stupid permissions thing im missing? I can delete a huge chunk of the parent style.css and nothing happens…its like im editing the wrong theme but I know im not.
Any help? anyone? Im feeling really dumb right now.
Is your child theme active? Have you @import your base style.css?
Fixed it!
I installed a different theme and activated it and tested to see if i could edit the style.css and it worked. So i loaded Spun theme back on and now it works….weird.
Thanks for the help!