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

Jeff Burnz’s picture

That 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:

#navlist li {
  padding: 0px 8px;
  list-style-type: none;
  list-style-image: none;
}

http://cvs.drupal.org/viewvc.py/drupal/contributions/themes/wabi/style.c...

atiras’s picture

How 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:

.sidebar .block h2 {
	font-size: 12px;
	font-weight: bold;
	margin: 0px;
	text-align: center;
	padding: 4px 2px;
	background: url(bg-sidebar.png) no-repeat center center;
}

versus:

.sidebar .block h2 {
	font-size: 12px;
	font-weight: bold;
	margin: 0px;
	text-align: center;
	background: url('bg-sidebar.png') no-repeat center;; padding-left:2px; padding-right:2px; padding-top:4px; padding-bottom:4px
}

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.

Jeff Burnz’s picture

Well 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.

Jeff Burnz’s picture

Category: bug » support
Status: Active » Closed (fixed)