Resource Not found ( 404 ) on CSS

3 answers

Profile photo of Css Magician 0.00 $tone February 8, 2013
Public

http://screencast.com/t/5vpM2UKA

http://127.0.0.1/micomida/skin/front…ss/colors/.css

How can I get rid of this error?

Dear chongkan,

Thank you for contacting Joomlart,
Please open file app/design/frontend/default/jm_jasmine/template/page/html/head.phtml and replace

Code:

<link rel="stylesheet" href="<?php echo $this->getSkinUrl('css/colors/'.$tmpTools->getParam(JA_TOOL_COLOR).'.css') ?>" type="text/css" />

to

Code:

<?php if($tmpTools->getParam(JA_TOOL_COLOR)): ?>
<link rel="stylesheet" href="<?php echo $this->getSkinUrl('css/colors/'.$tmpTools->getParam(JA_TOOL_COLOR).'.css') ?>" type="text/css" />
<?php endif; ?>
#1
Profile photo of Css Magician 0.00 $tone February 8, 2013
Public

I now have another question, where do I setup the default color in the Admin side?

Dear chongkan,

Please open file app/design/frontend/default/jm_jasmine/template/page/ja_vars.php and set default color at

Code:

$_params->set('ja_color','default');//default, light, paper, wood

I hope this will help.

#3

Please login or Register to Submit Answer

Written By

Comments