如何在 dbdirector 电子商务平台中更改我的在线商店模板

发布于 2024-12-12 12:46:45 字数 122 浏览 0 评论 0原文

有谁知道 dbdirector 中的商店模板系统如何工作?我想更改主页的 CSS,但我不确定在哪里可以找到主 CSS 文件。我知道有一种方法可以通过后端而不需要 FTP 来完成此操作。我确信我只是忽略了它。

谢谢!

Does anyone know how the store template system works in dbdirector? I want to change the CSS of my homepage but I'm not sure where to find the main CSS file. I know there's a way to do it via the backend without FTP. I'm sure I'm just overlooking it.

Thanks!

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

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

发布评论

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

评论(1

你与清晨阳光 2024-12-19 12:46:45

DBDirector网站上有明确的解释-> http://www.dbdirector.com/article/ 19/3/10/1/10/0/What_is_CSS_and_how_do_I_learn_CSS-

您可以添加内联样式:

<p style="font-size: 12px">Lorem ispsum</p>

向 HTML 页面添加样式:

<style>
p {
   font-size: 12px;
}
</style>

或创建外部 CSS 文件并将其包含在页面的

<link href="MyStyleSheet.css" type="text/css" rel="stylesheet" />

There is a clear explanation on the DBDirector website -> http://www.dbdirector.com/article/19/3/10/1/10/0/What_is_CSS_and_how_do_I_learn_CSS-

You can either add inline styling :

<p style="font-size: 12px">Lorem ispsum</p>

Add styling to the HTML page :

<style>
p {
   font-size: 12px;
}
</style>

or create an external CSS file and include it in the <head> of the page

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