Hi,
the pagination number at the bottom of the variation table are very little and difficult to press, especially on mobile phones, how ca I change the aspect of the pagination buttons?
I would want a dark blue background, white number, large font and a certain padding between buttons, I tried to use this CSS without results:
.btn.btn-light.active {
background-color: #007bff; /* Blu */
color: #ffffff; /* Testo bianco */
padding: 10px 20px; /* Dimensioni medie */
font-size: 16px;
border: none;
border-radius: 4px;
margin: 8px; /* Spaziatura tra i bottoni */
display: inline-block;
text-align: center;
text-decoration: none;
transition: background-color 0.3s ease;
}
.btn.btn-light.active:hover {
background-color: #0056b3; /* Colore più scuro al passaggio del mouse */
color: #ffffff;
}
Eproject