News:

Looking for documentation? Take a look on our wiki

Main Menu

Css question

Started by cvrak, June 07, 2018, 08:37:31 AM

Previous topic - Next topic

cvrak

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

jenkinhill

What "small rectangle" are you referring to? With VM default templates in Protostar or some other template?

A URL will help!
Kelvyn
Lowestoft, Suffolk, UK

Retired from forum life November 2023

Please mention your VirtueMart, Joomla and PHP versions when asking a question in this forum

cvrak

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

GJC Web Design

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;
}
GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation

cvrak

ok, GJC Web Design.
Thanks a lot!!