Hi,
Is your website live? If so, can you share the URL?
Hi Agustin,
Yes it is icingstudio(dot)cz
Now as I’m checking it, instead of just “branding things” in the branding page and “art things” in the art page, now they are all mixed. I don’t know what happened.
Thank you for replying.
About the mixed content, I believe you’re checking at the wrong pages. Check /branding/
and /art/
instead of /category/branding/
and /category/art/
.
Then, you can use the following CSS to hide the text preview on those pages
/**
* Archives
* Hide excerpt
*/
.archive #main article .entry-content {
display: none;
}
And this to hide the category tags
/**
* Hide categories tags
*/
#main article .cat-links {
display: none !important;
}
I had to use !important
because that element has a CSS class that is adding display: flex !important
.
Have a good day
Hi Agustin,
I tried but it doesn’t seem to work, am I pasting the code correctly? Please see screenshot https://imgur.com/SH5O0su
How do I make it back to http://icingstudio.cz/branding/ and http://icingstudio.cz/art/ in those pages?
http://icingstudio.cz/category/branding/ and http://icingstudio.cz/category/art/ are not supposed to show when you click Art and branding pages.
Thank you
-
This reply was modified 3 years, 7 months ago by
icingstudio.
Hi Agustin,
It worked already.
Thank you 🙂
Glad it worked!
It didn’t work on your first try because you had a syntax error in your CSS (a curly bracket was missing)
Thank you, I will always look at the syntax now 🙂