-2

我有以下文件夹结构

application
assets\
      \css
      \js
      \images

我在资产文件夹中有所有引导文件 - css 文件夹中的 css 文件,js 文件夹中的 js 文件等。我的问题是这个。我有一个使用 bootstrap.css 的视图。我通过执行以下操作来引用它:

   <script type="text/javascript" scr=<?php base_url()?>assets/css/bootstrap.css>    </script>

它找到文件就好了。但是当我尝试在引导程序中使用内置图像时,它们不会显示,因为引导程序 css 期望图像在

       "../img/glyphicons-halfing.png"

但是视图的物理路径类似于:

c:\wamp\www\myapp\views\templates\

我想我可以将图像文件夹复制到视图文件夹中......或者我可以编辑 css 以指向正确的位置。但我只是想看看其他人是如何使用 codeigniter 和 bootstrap 来组织他们的文件夹的。谢谢。

4

2 回答 2

1

它在“img”中查找-您需要将其修改为“图像”

"../images/glyphicons-halfing.png"
于 2012-05-29T19:20:58.527 回答
0

Glyphicons 位于“assets\font”文件夹中。

以防万一,我在 xubuntu 上使用 CodeIgniter 3.x 和 Xampp 5.6.x。

assets\
      \css\
      \js\
      \images\
      \fonts\
             glyphicons-halflings-regular.eot
             glyphicons-halflings-regular.woff2
于 2017-05-06T01:25:33.440 回答