user1592380
user1592380

Reputation: 36247

twitter bootstrap: IE*8 error, not seen with chrome

I am trying to implement the bootstrap form at https://github.com/jackilyn/bootstrap-contact/ into my site. after integration it works fine in chrome , but in IE8 , I am getting:

Couldn't load http://localhost/my_project/index.php/my_controller/assets/less/reset.less (404)

In IE8 , it appears that the CSS is not working. Is there any way to fix this?

Thanks,

Bill

Upvotes: 1

Views: 359

Answers (1)

Scott Simpson
Scott Simpson

Reputation: 3850

You need to include this file (reset.less) on your bootstrap.less file, then recompile less. The files with .less are meant to be compiled, and not served up by the browser.

If you are not compiling your own .less -- you maybe able to change that .less fill to a normal .css file.

Here is a link to the bootstrap.less file:
https://github.com/twitter/bootstrap/blob/master/less/bootstrap.less

Upvotes: 2

Related Questions