在网站中使用 CSS class 查找 style.css

Find style.css using CSS class in a website

我正在为我的网站使用 Dokan 插件。我的问题是需要删除标题和横幅之间多余的 space(检查 screenshot 1). And I find a solution using web inspect tool. If i change the padding-bottom to 0px its working fine.(check screenshot 2)。所以我试着在我的网站后端找到 CSS class,我发现了关于我的问题的相同 CSS class 但是如果我改变它在我的网站上不起作用。

CSSclassmartfury/style.css

.page-header-page .entry-title {
    padding-top:0px;
    padding-bottom:0px;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

我搜索了每个 CSS 文件,但没有找到也尝试清除数据。什么都帮不了我。如果有人知道如何解决这个问题,请帮助我。

非常感谢您的宝贵时间。

只需尝试使用 !important,如下所示

padding-bottom:0px !important;

我认为你 CSS 无法覆盖,所以 !important 将在那里工作。