Original site does not accept CSS that in localhost is working

1

I use GIT for versioning the project in development. I have a form made with Contact Form 7 and to change its default, I changed some classes with . In the local version it worked. However, when committing to the server, CSS is not accepted, whereas in the file style.css of the server it is equal to style.css local.

Does anyone know what it can be?

I've checked that all are now not going to pro server when commited . Detail that only the attributes added are not working. Since the path of <head></head> is Ok, otherwise nothing worked.

    
asked by anonymous 07.05.2014 / 14:08

1 answer

1

The most likely cause should be the path that was used on localhost to be different from that of production.

Using firefox open the debug (shortcut key F12, it is not firebug)

  

Console > Uncheck all, and leave only Net

After that a reload on your page,

Go back to the console, there will show the (wrong) path of the css

    
07.05.2014 / 15:44