对(索引)进行CSS更改?

mze*_*e99 5 css wordpress wordpress-theming

我目前正在尝试对WordPress子主题进行一些CSS更改。

当我使用chrome开发人员工具时,它会告诉我元素所引用的style.css文件中的哪一行。例如,style.css:17。

但是,在某些CSS元素上,不是引用style.css而是引用(index)。例如,(索引):54。(索引)指的是什么?通常我会在哪里找到它来进行更改?

谢谢

iam*_*box 3

WordPress 主题选项通常会在 html 文档的头部附加一个样式表。

<head>
  <!-- added by Wordpress, usually found in functions.php -->
  <style>
    ...theme specific styles...
  </style>
</head>
Run Code Online (Sandbox Code Playgroud)