Search code examples
htmlcsswordpressinlineedit

How to edit HTML, CSS code inline in Wordpress


Could somebody tell me how to change (or even find a file with), this code in wordpress?

printscreen from Inspect Element (Q) about my site

I know what to change but I have no idea how. I've already checked:

  • All of the *.css files in my themes?

  • All of the *.php files.

  • And this is not in a Visual Editor in WP.

How to do it?


Solution

  • If it's just a one class that needs it's properties changed go to the visual editor and override the inline style with !important rule, like this:

    .content {
      min-height: 150px !important;
    }
    

    Also be careful when using !important - it should be used sparingly.