-
Good morning, a few days ago I asked how to make the introductory text on tag pages appear only on the first page, but not on subsequent pages (see topic text that can only appear on the first page). I have the same problem on category pages, as you can see at https://avecesveoviajes.com/europa/espana.
The question is: how can I make the introductory text on category pages only appear on the first page and not on subsequent pages?
The code you provided for tags works perfectly:.archive.paged.tag .gb-element-f4061466 {
display: none;}
Is there another code that works for both categories and tags, or do I need to incorporate different code for categories? (The container will be the same for tags and categories: (gb-element-f4061466)
Thank you
-
Alvind
Hi there,
You just need to update the previous CSS to this:
.archive.paged.tag .gb-element-f4061466, .archive.paged.category .gb-element-f4061466 { display: none; }This will apply to both tag and category archive pages.
-
🙂 Okay, perfect, solved. Thank you very much 🍻
-
Alvind
You’re welcome!
- You must be logged in to reply to this topic.