I recently installed and started working with the Ordasoft Blank template for Drupal - nicely done!
While trying to better understand a problem I am having (responsive images - nothing to do with the template per se), I had Firebug open while loading my page. It displayed the following error:
Code: |
NetworkError: 404 Not Found - http://www.mysite.com/sites/all/themes/ordasoft_template/images/none.png
|
I looked and this file does not exist. I see that this is called in order that the code for those site that do not use a background is the exact same as for those sites that do. Obviously, this is not a critical error.
It seems to me that this could be solved by: cp /dev/null none.png (this does work), but is this really the best approach?
Also, just found another error:
When I changed the color scheme to anything other than Blue, I get the following errors:
Code: |
Notice: Undefined index: base in _color_rewrite_stylesheet() (line 527 of /full_path/modules/color/color.module).
Notice: Undefined index: base in _color_rewrite_stylesheet() (line 527 of /full_path/modules/color/color.module).
Notice: Undefined index: blend_target in _color_rewrite_stylesheet() (line 527 of /full_path/modules/color/color.module).
|
Also, the values being set via this control are not being honored. What is the fix for this problem? Note - I did a clean install, so there should not be any issues with the Drupal install.