Hey All,

I'm having the following issue with my CSS.

1) I went into Administer >> Site Building >> Themes >> Garland >> Clicked "configure" next to garland, which is set as my default theme (and yes, it's enabled)

2) About Halfway down the page are a bunch of check boxes under "Toggle Display"

3) I unchecked "Logo." The logo that was selected was a custom logo.

4) I clicked "Save Configuration"

The page then saved, but rendered a variety of errors and the style sheet that previously styled the site was no longer working. It appears that the blue marine theme is styling part of it and the garland theme is styling part of it.

The errors that showed up on the page were as follows:

* warning: mkdir() [function.mkdir]: Permission denied public_html/modules/color/color.module on line 235.
* warning: copy(files/color/garland-768c3586/menu-collapsed.gif) [function.copy]: failed to open stream: No such file or directory public_html/modules/color/color.module on line 252.
* warning: copy(files/color/garland-768c3586/menu-expanded.gif) [function.copy]: failed to open stream: No such file or directory public_html/modules/color/color.module on line 252.
* warning: copy(files/color/garland-768c3586/menu-leaf.gif) [function.copy]: failed to open stream: No such file or directory public_html/modules/color/color.module on line 252.
* warning: imagepng() [function.imagepng]: Unable to open 'files/color/garland-768c3586/body.png' for writing: No such file or directory public_html/modules/color/color.module on line 401.
* warning: imagepng() [function.imagepng]: Unable to open 'files/color/garland-768c3586/bg-bar.png' for writing: No such file or directory public_html/modules/color/color.module on line 401.
* warning: imagepng() [function.imagepng]: Unable to open 'files/color/garland-768c3586/bg-bar-white.png' for writing: No such file or directory public_html/modules/color/color.module on line 401.
* warning: imagepng() [function.imagepng]: Unable to open 'files/color/garland-768c3586/bg-tab.png' for writing: No such file or directory public_html/modules/color/color.module on line 401.
* warning: imagepng() [function.imagepng]: Unable to open 'files/color/garland-768c3586/bg-navigation.png' for writing: No such file or directory public_html/modules/color/color.module on line 401.
* warning: imagepng() [function.imagepng]: Unable to open 'files/color/garland-768c3586/bg-content-left.png' for writing: No such file or directory public_html/modules/color/color.module on line 401.
* warning: imagepng() [function.imagepng]: Unable to open 'files/color/garland-768c3586/bg-content-right.png' for writing: No such file or directory public_html/modules/color/color.module on line 401.
* warning: imagepng() [function.imagepng]: Unable to open 'files/color/garland-768c3586/bg-content.png' for writing: No such file or directory public_html/modules/color/color.module on line 401.
* warning: imagepng() [function.imagepng]: Unable to open 'files/color/garland-768c3586/bg-navigation-item.png' for writing: No such file or directory public_html/modules/color/color.module on line 401.
* warning: imagepng() [function.imagepng]: Unable to open 'files/color/garland-768c3586/bg-navigation-item-hover.png' for writing: No such file or directory public_html/modules/color/color.module on line 401.
* warning: imagepng() [function.imagepng]: Unable to open 'files/color/garland-768c3586/gradient-inner.png' for writing: No such file or directory public_html/modules/color/color.module on line 401.
* warning: imagepng() [function.imagepng]: Unable to open 'files/color/garland-768c3586/logo.png' for writing: No such file or directory public_html/modules/color/color.module on line 401.
* warning: imagepng() [function.imagepng]: Unable to open 'files/color/garland-768c3586/screenshot.png' for writing: No such file or directory public_html/modules/color/color.module on line 401.
* warning: fopen(files/color/garland-768c3586/style.css) [function.fopen]: failed to open stream: No such file or directory public_html/modules/color/color.module on line 338.
* warning: fwrite(): supplied argument is not a valid stream resource public_html/modules/color/color.module on line 339.
* warning: fclose(): supplied argument is not a valid stream resource public_html/modules/color/color.module on line 340.

I'm going to keep looking, but if anyone has any helpful tips I'd love to hear them.

Thanks a bunch,

Jordan

Comments

drooppi’s picture

Hi there, mate,

It doesn't seem to be problem with your CSS, but with the configuration of the Garland color wheel. You seem to use a custom color, and a new folder (with bunch of picture files for rendering the theme) inside your uploaded files folder is created every time you create a new Garland color scheme. You seem to be using color scheme "768c3586", quote:
'files/color/garland-768c3586/menu-collapsed.gif' .

Did you check whether your folder "../files" where you and your users can upload contributed files has the correct write permissions?
Did you change from public to drupal-controlled files upload or vice versa?

Are you using the color change option for garland? It needs the public file upload method!
See http://drupal.org/node/132725

Look through the error message you posted. You can see it's trying to create a folder (shell command "mkdir"),
and all the others are also read/write errors because of a permissions issue.

Hope this is of any help to you.

drooppi