Hi,
When in category view, with paging, how can I change the colour of the small rectangle for the current page? Now, all rectangles are the same colour which makes difficult for the user to know which page is dispalying.
Thanks
Joomla 3.8.3
VM 3.2.14
What "small rectangle" are you referring to? With VM default templates in Protostar or some other template?
A URL will help!
The URL is https://bit.ly/2HrAOfF
Attached you'll see what rectangle i mean. In red is the english text.
I'm using Gantry Hydrogen template.
Thanks
difficult to separate as they have no classes
but with
a.pagenav {
color: #fff;
text-decoration: none;
background: #00420e;
}
you can have
with individual entries you can try ( they don't seem to work in one joined rule
li:not(.pagination-next) a.pagenav {
color: #fff;
text-decoration: none;
background: #00420e;
}
ok, GJC Web Design.
Thanks a lot!!