I am working on an asp.net mvc5 web application, and I did the following:-
- Using VS 2012 I created a new asp.net mvc5 empty project.
- Then using Nuget I installed jquery ui 1.11.2.
After that reference these inside my bundle
"~/Content/themes/base/core.css",
"~/Content/themes/base/autocomplete.css",
"~/Content/themes/base/theme.css"Then I download the jQuery-ui for a theme named Start from http://jqueryui.com/download/
- And I replace the current core.css & theme.css with the files that come with the Start theme. Currently the auto complete is working , but the result is showing a bullets beside the returned data as follow:-
So I have the following 2 questions:-
What is causing the bullets to appear ?
Is replacing the default core.css & thmese.css & images with the ones inside the Start theme a correct approach ? or I should create a new folder under the Content folder inside my project instead of modifying the default base theme folder ?
Thanks