Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been looking around and it seems an issue quite diffused, but i am not finding the solution for my case.

I have set up my first Compass Project following these instructions

My folder project is called sass-test

I have my css files

  • screen.css
  • print.css
  • ie.css
  • config.rb

My config.rb inside is set up in this way

http_path = "/"
css_dir = "stylesheet"
sass_dir = "sass"
images_dir = "images"
javascripts_dir = "javascripts"

Then I have my sass folder with:

  • screen.scss
  • print.scss
  • ie.scss

I do some changes in my screen.scss file and then i compile it by the terminal giving this command

compass compile sass-test/sass/screen.scss

Now it happens that the automatically COMPASS generates new folders

  • stylesheet
  • test
  • sass .In this folder Compass compiles screen.css

I dont want my screen.css compiled there but i want it inside my sass-test where there is already existing the screen.css file.

How can i achieve that? I also look up in this article reading all the comments but i can not figure it out the issue.

I have also tried to compile it by liveReload preprocessor setting up the Outputfolder but it's still compiling the screen.css in the "wrong" path.

how can i give the instructions to Compass to compile my screen.css file in my sass-test?

Here the print screenenter image description here

Thanks

share|improve this question

3 Answers

You need to change the css_dir = "stylesheet" in your config.rb to point to where you want the compiled CSS files to go. In your case, it sounds like you want it here:

css_dir = "./"

You'll probably need to enable relative URLs as well.

share|improve this answer
Thanks for the answer, i have tried to edit as you said css_dir="./" but it's still compilling in the other path. I have followed all the istructions, this is exactly my case github.com/thesassway/sass-test/blob/master/config.rb. How can i enable relative URLs? – Manna Jan 19 at 12:53
1  
Uncomment line #15: # relative_assets = true – cimmanon Jan 19 at 13:21
i did it too already couse i look up here backtothefront.net/2011/compass-sass-quick-start-guide, but it's not compiling rightly. This is my config.rb right now : http_path = "/" css_dir = "./" sass_dir = "sass" images_dir = "images" javascripts_dir = "javascripts" output_style = :expanded relative_assets = true – Manna Jan 19 at 13:26
1  
Try running your command from within the sass-test directory where your config.rb lives. Wonder if the hyphen in the directory name is confusing it. – cimmanon Jan 19 at 13:58
1  
That's the current version. You don't have any stray config.rb files hanging around outside of the sass-test directory do you? – cimmanon Jan 19 at 15:56
show 9 more comments

Ok i have sorted it out the issue, i start from the beginning calling the project differently ( without any hyphen) then i set up the output folder by LiveReload preprocessor and anytime i edit any scss file, it compiles straight to the relative css file inside the stylesheet folder. In this way i do not use any command line

share|improve this answer

Because all paths defined in the project configuration file are relative to the current shell path, you must run the command compass from the root of your project, that is to say, since the directory sass-test:

cd sass-test
compass compile sass/screen.scss

Or just the command compass compile to compile all files.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.