[Solved] Change bootstrap css file : glyphicons not found

Hi there,

i wanted to use my own bootstrap.css file (using bootswatch), so i added the following to my config/web.php :


'assetManager' => [

				'bundles' => [

						'yii\bootstrap\BootstrapAsset' => [

								'sourcePath' => 'bootstrap',

								'css' => ['bootstrap.min.css'],

						],

				],

		],

Works perfectly, but now glyphicons font files can’t be found, they are searched in assets/fonts/ directory (i think because that’s the path in the bootstrap css file)

Do i have to change the fonts path in the css file ? What path do i have to use in it ?

Thanks !

Problem solved : i created an asset to replace yii’s bootstrap asset, all working fine now ::)