How to ignore the specific CSS codes coming from the WordPress plugin stylesheet?

后端 未结 8 1577
闹比i
闹比i 2021-01-12 18:13

I am working on a WordPress website built on custom theme in which I want to ignore some specific CSS codes coming from wordpress plugin style sheet.

8条回答
  •  滥情空心
    2021-01-12 18:51

    To overwriting the plugin CSS you can use !important; for particular class

    @media screen and (max-width: 575.98px) .gv-table-view tr:first-of-type {
    border-top: 10px solid #000000!important;
    }
    

    If their available id it that div you can use id rather than !important; and it will work if The developer of the plugin was not using !important throughout the plugin CSS

提交回复
热议问题