PageNavi wouldn’t change anything. Any other suggestions?
I haven’t used any pagination plugins so you might want to search the repository for an alternative and try one out.
I also did a quick search and found this method for adding pagination on your own:
https://crunchify.com/how-to-add-easy-wordpress-pagination-without-plugins/
If you go that route, I’d either turn it into your own plugin so it persists between themes, or create a child theme so you can update the theme without losing your changes.
Also, what is the CSS line to make the current navigation brighter: I’ve changed background colour, but it only appears such when being hovered
I’m not seeing any navigation menu at the moment, but if you’re trying to target the colour of the currently active page in the main menu, this code should work:
.main-navigation .current_page_item > a, .main-navigation .current-menu-item > a {
color: #bb00bb;
}
Change the colour to anything you like.
Don’t edit the theme files directly, otherwise your changes will be overwritten whenever the theme is updated.
An easy way to add custom CSS is to install the Jetpack plugin and activate the Custom CSS module. You’ll then add your custom CSS in the new stylesheet editor that’ll appear in your dashboard, under Appearance > Edit CSS.
As alternatives, you could either install a standalone custom CSS plugin, or create a child theme.