Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
ul.page-navigation li.next.disabled > *::after {
display: none; /* Wenn letzte Seite des Suchergebnisses erreicht wird, wird der Pfeil fuer die naechste Seite nicht mehr angezeigt */
}
ul.page-navigation li.previous.page-link.disabled > *::after {
display: none; /* Auf der ersten Seite des Suchergebnisses wird der Pfeil fuer die vorherige Seite nicht mehr angezeigt */
}
This was old css code in Okapi, but does not work in Pangolin. I cannot find any difference.
Is there a new selector?
Thanks, Rainer
Offline
what is this in, what is it being used for? navigation? in an album?
a link to a page always helps
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
After a search the result is displayed. Is it more than one site, you see the numbers of the sites right above the results. And there are arrows vor the next or the previous sites. If you are on the first site, the arrow to the previous site is displayed, but inactive. The same if you are on the last site, the arrow to the next site is displayed, but inactive. This code in Okapi doesn't show the arrows, if inactive. But it works not in Pangolin.
Rainer
Offline
Oh, Ok.
Just looked at that in my own test site using the browser inspector (really handy tool to learn how to use). It doesn't show any direct descendants for an :after psuedo selector to be applied to.
try remove the descendant and psuedo selector and see if that works:
ul.page-navigation li.previous.page-link.disabled {
display: none;
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Offline
Offline
Pages: 1