Closed (fixed)
Project:
Wabi
Version:
6.x-1.1
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
19 Oct 2008 at 16:43 UTC
Updated:
20 Mar 2009 at 15:30 UTC
I've been getting repeated "Page not found" errors logged for: sites/xxx/files/color/wabi-bb24dc94/none. I've fixed this temporarily by editing the following section of the wabi css to remove the tags list-style-image: url('none'); but don't know enough to know what other effects this will have.
#menu ul li {
list-style-type: none;
list-style-image: url('none');
}
#navlist {
font-size: 1.0em;
list-style-type: none;
list-style-image: url('none');padding-left:10px; padding-right:10px; padding-top:2px; padding-bottom:0px
}
#navlist li {
list-style-type: none;
list-style-image: url('none');padding-left:8px; padding-right:8px; padding-top:0px; padding-bottom:0px
}
Comments
Comment #1
Jeff Burnz commentedThat CSS is invalid and will give a 404 error.
Declaring url('none') tells Apache to serve an image from the same directory as the CSS file with the file name 'none' - clearly invalid.
Where did you get that code from, the CSS I see in Wabi is:
http://cvs.drupal.org/viewvc.py/drupal/contributions/themes/wabi/style.c...
Comment #2
atiras commentedHow odd. I downloaded the 6.x-1.1 release from drupal.org on 18/7, installed it in Drupal my development environment (XAMPP), and customised the colors. There are other small differences between the files I downloaded then and the files I just downloaded for comparison -- mostly minor changes such as:
versus:
Not having looked in the Css file until I needed to track down this error, I can't understand how the changes arose. Still, probably not your problem, and it's a lovely theme -- thank you.
Comment #3
Jeff Burnz commentedWell those are actually the same thing, just expressed differently, your CSS editor may be transforming it to long hand - rather than the concatenated shorthand of the first version.
Comment #4
Jeff Burnz commented