Hiding Tags-Cerauno theme
-
Hi, I am trying to hide the tags in my posts however;
—.entry-meta .tag-links { display: none;' }—
.tag-links { display: none; }—
none of the above worked. I have a premium plan with cerauno theme, but it seems CSS editing is not working. Anyone has any idea why it is so? Or am I doing something wrong?
Thank you.
SelinThe blog I need help with is: (visible only to logged in users)
-
Hello there,
You were really close! “tags-links” instead of “tag-links” :)
This should do the trick:
.tags-links { display: none; }Let me know if that doesn’t work!
Sage -
Hi Sage,
Thank you for your reply, I tried as in below however it didn’t work..tag-links { display: none; }Is there a trick in writing a css? I am inserting the code in the box and then I click save. Should it be effective immediately?
Thank you for your help!
Selin -
Hi there, Selin!
If you copy this code exactly and paste it in, it should work :)
.tags-links { display: none; }In your code you have “tag” instead of “tags” and so it won’t actually target that area. If you copy my code and paste it into your CSS area and save, it should work :)
Hope that helps,
Sage -
Hi Sage,
I got it wrong the last time, I thought I was writing “tags” and it was wrong :)
Now I tried with “tags” and saved however still no luck. Could it be about the theme?
Thanks a lot! -
Hi Sage,
I found the below CSS from the browser. May be it would be of help;element { } .entry-footer-wrapper > span, .entry-footer .edit-link { display: inline-block; margin-right: 1.6em; } .tags-links { display: none;There is a strike through on “display:none”. I think “display:none” can not overwrite the above “display: inline-block”. Would you have an idea on this?
Thanks!
Selin -
Add “!important” to the CSS code that Sage suggested, like this:
.tags-links {
display: none !important;
}That might work.
If not, where are you adding the custom CSS?
(Make sure there is a closing curly bracket for the .tags-links) -
Thanks Romeo, that worked like a charm!
But for future references, could you please tell me why I had to add “!important”?
Thank you both! -
Hi there, Selin,
Glad it’s working for you now! The “!important” part pretty much does what it says, making that line important so it overrides anything else.
Hope that helps,
Sage
- The topic ‘Hiding Tags-Cerauno theme’ is closed to new replies.