Reputation: 33
I just put a web page up on a server yesterday, and some things are different than they were in the development environment. There are a few things with different colors, but I'm mostly concerned with how the jQuery autocomplete search widget is appearing. It no longer looks like a drop down list like it did before. It appears in bullet point format with a transparent background. I remember fixing this when I first installed the widget in development stages. I found another post regarding similar issues here but everything is referring to IE8. My issues are occurring in Chrome. Any suggestions?
Upvotes: 0
Views: 477
Reputation: 33
Turns out there was no issue with the browsers, or with any of the files. The issue was that my server was not returning the correct MIME type. One line of code in a config file later, a server restart, and the issue is solved. Thanks for all the help!
Upvotes: 1
Reputation: 6917
Sounds like you didn't push every file, maybe you missed a .css or .js file? Or the path to such files is different on the server? Open the console in chrome (CTRL+SHIFT+I) and look for a 404 error or missing files.
Upvotes: 2
Reputation: 553
Try checking browser's console for any errors or 404s. Also, turn off the adblocker or other such plugins as they may block some files being loaded because of their file names.
Upvotes: 1