Hi there, On Wed, Aug 12, 2009 at 10:17 AM, TechnobraryGeek<[email protected]> wrote: > > First I appreciate you making an effort to help. I have feeling it's > going to require some Drupal experience. > > But here goes, the BP Grid CSS Generator creates 3 files. grid.css > compress.css and grid.png. I cannot divine the proper directory to put > these so they are used. I tried dropping them in the blueprint/ > blueprint/blueprint/src (the triple BP is a Drupal sub-theme-ing deal) > But I see no compress.css to replace and I don't know enough about > compress.rb to know how they relate. I admit and completely own my > newness :-)
The theme directory in Drupal usually contains a file called style.css where the main site's CSS is defined. if you just add the following lines to the beginning of style.css, you should be set: @import url(path/to/grid.css); @import url(path/to/compress.css); If you put the png file into the images directory in the theme, you should be able to access it at images/grid.png from inside your CSS file. Remember a) to change the paths in the import statements above to reflect the actual directory structure in your theme, and b) that Drupal provides quite a bit of default CSS that may f*ck with your Blueprint stuff (it may or may not, I haven't actually tried to combine the two). -- Christopher Torgalson http://www.typo3apprentice.com/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Blueprint CSS" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/blueprintcss?hl=en -~----------~----~----~----~------~----~------~--~---
