如何使用 ThemeRoller 将我的 jQuery 移动主题导入到我的网站?

发布于 2024-12-20 04:09:18 字数 365 浏览 1 评论 0原文

我有一个小问题。昨天我用 ThemeRoller 创建了一个新的 jQuery 主题。之后我下载了一个 zip 文件。然后它告诉我在我的网站中添加一些代码,例如:

我认为可以。之后,我解压缩了 zip 文件,在根文件夹中创建了一个新的 css 文件夹并导入了主题文件夹。所以我将此代码添加到我的网站中:

但哦,奇怪......什么也没发生。我的错在哪里? 感谢您的帮助。

I have a small problem. Yesterday I created a new jQuery theme with the ThemeRoller. After that I've downloaded a zip file. Then it tells me to add some code into my website like:

<link rel="stylesheet" href="css/themes/my-custom-theme.css" />

I thought ok. After that I unzipped my zip-file, created a new css folder in my rootfolder and imported theme folder. So I've added this code to my site:

<link rel="stylesheet" href="css/themes/test.css" />

But oh wonder.. nothing happened. Where is my fault?
Thanks for help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

是伱的 2024-12-27 04:09:18

要使用您的主题,请将其添加到页面顶部的 jquery.mobile.struct 文件之后,如下所示:

<!DOCTYPE html>
<html>
<head>

  <title>jQuery Mobile page</title>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="css/themes/MY-CUSTOM-THEME-HERE.css" />
  <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile.structure-1.0rc2.min.css" /> 
  <script src="http://code.jquery.com/jquery-1.6.4.min.js"></script> 
  <script src="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.js"></script> 

</head>

http:// /jquerymobile.com/themeroller/

To use your theme, add it to the head of your page after the jquery.mobile.structure file, like this:

<!DOCTYPE html>
<html>
<head>

  <title>jQuery Mobile page</title>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="css/themes/MY-CUSTOM-THEME-HERE.css" />
  <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile.structure-1.0rc2.min.css" /> 
  <script src="http://code.jquery.com/jquery-1.6.4.min.js"></script> 
  <script src="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.js"></script> 

</head>

http://jquerymobile.com/themeroller/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文