Okay
  Public Ticket #2013809
Kalium 2.9 Styling
Closed

Comments

  •  13
    Alice started the conversation

    We have just updated to Kalium 2.9. The update seems to have brought some unexpected changes to the styling on our site. 

    The "Add to basket" text on the catalogue pages has turned grey - we would like to keep this black as before.

    Also, the text in the product filter in the sidebar now turns bold when selected, which it didn't do before. So we would like to override this too.


    {"wp":{"use":false,"adminUrl":"https://parallaxphotographic.coop/wp-admin","username":"","password":""},"ftp":{"use":false,"url":"","port":"","user":"","password":"","path":""}}
  • [deleted] replied

    Hi Alice,

    1— Please add the code below to your Custom CSS area:

    .woocommerce .add_to_cart_button {
        color: #000;
    }

    2— It seems that the plugin author made some changes to it's plugin, to change that to normal font weight you can add this CSS code to your Custom CSS area:

    .prdctfltr_wc .prdctfltr_filter label.prdctfltr_active>span {
        font-weight: normal;
    }

    Have a great day!

  •  13
    Alice replied

    Thank you!