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
Photo Search works now very well!
I played a lot with custom css.
In the search results you can see the albums found and the numbers of sites with photos which were found.
But you never know how much sites were found. Also, you don't know, that you have reached the last site, because there are always the arrows for the next or the previous site (same colour).
I would wish a change of that, but I don't know how - with custom css or what else?
Rainer
Offline
I see what you mean. Searching on "nepal" ends up with 48 pages of results. When you get to page 48, the right arrow > is disabled. When you hover over it, there's no pointy finger.
At that point, there is a class named "disabled" added to the list item:
<li class="next page-link disabled">
You could write some css that changes the color of that. Try:
ul.page-navigation li.next.disabled > *::after {
color: red;
}
As for showing the total number of pages....that'll be for Matt to address.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Got it, thanks Rod.
I took this value:
ul.page-navigation li.next.disabled > *::after {
display: none;
}
ul.page-navigation li.previous.disabled > *::after {
display: none;
}
Rainer
Last edited by Rainer Goergen (2016-06-14 02:37:00)
Offline
Pages: 1