Chris
Chris

Reputation: 119

Moving CSS from Web to Local breaks it

I am working with MVC/ASP.NET. Up to this point, I have been working with a JQuery CSS file on the web. I have now decided that I want to point to a local copy, so I downloaded it to an appropriate folder and updated the link address.

Now however, it looks like some of the CSS isn't loading. Firebug shows the CSS file in the list of loaded style sheets, so it isn't a bad link... I feel it may be some MVC facet I have failed to learn yet. Ideas?

Code (top of a partial view):

@*<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">*@
<link rel="stylesheet" href="~/Content/jquery-ui/jquery-ui.theme.widgets.css">

Before and After Pics

Upvotes: 0

Views: 38

Answers (1)

Mark
Mark

Reputation: 4873

Looks like you are missing the following image/directory: "images/ui-icons_888888_256x240.png"

Be sure to check for exterior URL links when localizing CSS sheets.

Upvotes: 1

Related Questions