0

Whenever I inspect an element on my wordpress website it shows the element as being on line 1 of http://localhost/wordpress/wp-content/themes/ignite/style.min.css?ver=1.19 instead of the correct line in "style.css".

Can someone please let me know how to make my website use style.css rather than style.min.css?ver1.9?

Thanks.

user3164083
  • 1,053
  • 6
  • 18
  • 35

1 Answers1

1

The script has been minified. Technically it's all on line 1. See if you cannot locate a version of the css that is not minified.

You can also use a minifier tool in reverse, take the unminfied cod and replace the css file with the inflated version. Run it again and then you'll be able to find the problem based on the line.

Minifier tool here:

http://cssminifier.com/

Craig Barben
  • 148
  • 1
  • 12
  • Thanks. I can see the unminified version and the minified version in my dreamweaver site. How do I make it use the unminified version? – user3164083 Jul 04 '14 at 04:17
  • I think for now it would be best if you just create a new stylesheet. Let's call it "style.css". Comment out the original like so: And add the new one in: – Craig Barben Jul 04 '14 at 04:19
  • Cheers. Do you know what the file will be called in my wordpress site that specifies that link? – user3164083 Jul 04 '14 at 04:25
  • Would copy pasting the unminified code into the minified version be bad practice? – user3164083 Jul 04 '14 at 04:36