Kevin Smith
Kevin Smith

Reputation: 731

Asset and theme

I'm trying to figure out why after adding in the this asset line it turns into the line below it but shows a 404 file not found when in fact it does exist.

Asset::css('theme::bootstrap/bootstrap.css');

http://dev.myurl/application/themes/mytheme/assets/css/bootstrap/bootstrap.css” rel=“stylesheet”>

Upvotes: 0

Views: 84

Answers (1)

Alireza
Alireza

Reputation: 5673

try this:

<?php 
Asset::css('bootstrap/bootstrap.css');
echo Asset::render(); 
?>

Upvotes: 1

Related Questions