hi:

'm using drupal 4.7 and spreadfirefox, and after activate 'clean url' it finaly works (because my site is in a folder) and i have to change .htaccess

but when i enter in any menu of navigation menu , spreadfirefox forgot frame working and i see at top of page the menu and after, down of menu the content.

it's something not working with spreadfirefox or my 'clear url' configuration, because the code of two pages are the same only change in

form action="/bara/?q=admin/comment"
or
form action="/bara/admin/comment"

thank you

Comments

sdyson’s picture

I have the same problem with the spreadfirefox theme and clean urls - the layout is completely broken.

sdyson’s picture

I had the same problem and discovered the problem was in the path to the css files. The paths were set relative but because of the clean urls they won't resolve to the correct files.

Open up page.tpl.php under the spreadfirefox theme directory and find the following:

 <style type="text/css" media="screen">
  <!--
   @import url(<?php print path_to_theme()."/modules.css"; ?>);
   @import url(<?php print path_to_theme()."/nav.css"; ?>);
   @import url(<?php print path_to_theme()."/layout.css"; ?>);
  -->
 </style>

Replace it with:

 <style type="text/css" media="screen">
  <!--
   @import url(<?php print base_path().path_to_theme()."/modules.css"; ?>);
   @import url(<?php print base_path().path_to_theme()."/nav.css"; ?>);
   @import url(<?php print base_path().path_to_theme()."/layout.css"; ?>);
  -->
 </style>

Hope that helps.