Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Making CSS changes to (index)?

I'm currently trying to make some CSS changes to a WordPress child theme.

When I use the chrome developer tool, it tells me which line in the style.css file the elements refer to. For example, style.css:17.

However, on certain CSS elements, instead of referring to style.css it refers to (index). For example, (index):54. What does (index) refer to and where would I normally find it to make the changes?

Thanks

like image 254
mzee99 Avatar asked Oct 21 '22 18:10

mzee99


1 Answers

Wordpress theme options usually appends a stylesheet to the head of the html document.

<head>
  <!-- added by Wordpress, usually found in functions.php -->
  <style>
    ...theme specific styles...
  </style>
</head>
like image 91
Jeff Voss Avatar answered Oct 23 '22 23:10

Jeff Voss