Archived topic
Move cat links location on posts and category archive pages
9 replies · Started by David on January 14, 2018
I'm looking to move the category links on my posts and archive pages. I was wondering if there was a way to move the category links
A- from below the content on posts to directly below the entry title
B-on my archive list of posts, move category link from under excerpt to the lower left corner of featured image thumbnail. If thats not possible, move category link from under excerpt to under title
Thanks
Hi there,
A: https://generatepress.com/forums/topic/display-post-categories-and-tags-below-title/#post-443117
B: I think this is what you are looking for: https://generatepress.com/forums/topic/home-page-category-link-position/
tried A) pasted both parts into child theme functions.php and it totally removed cat-links
tried B) but didnt do anything
not sure what I'm doing incorrectly
A) Think I gave you the wrong link. Try Tom's solution: https://generatepress.com/forums/topic/display-post-categories-and-tags-below-title/#post-443405
And also read the replies below as well.
B) Can you guide me to a category page?
that didnt work either
/dog-tips is a category archive
thanks
Try adding this CSS:
.entry-header .entry-meta {
display: block;
}
were close, now displays below title on posts and archive pages, but is also still displaying below the content. If we just get rid of it below the content we got it, thanks
Try this:
footer.entry-meta .cat-links {
display: none;
}
thanks Leo, works like a charm
No problem!