Hello folks,
I have a problem with semantic custom classes genereated through
compress.rb.
I have a feeling this is a compress.rb bug, but I want an opinion
before posting it to the bug tracker.
Here's my layout:

 <div id='blueprint-container' class='container showgrid'  >
  <div id='header'>
    <h1>title</h1>
  </div>
  <div id='main-column'>
    <div id='banner'>
      &nbsp;
    </div>
   <div id='content'>
   Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum.
    </div>
  </div>
  <div  id='sidebar' style='background: orange'>
     asas
  </div>
  <div id='footer' style='background: #508C2C'>
    footer
  </div>
</div>

The classes you see are semantic classes generated with this
settings.yml file:

project:
  path: /Users/pathtomyproject
  custom_css:
    ie.css:
      - custom-ie.css
    screen.css:
      - custom-screen.css
  custom_layout:
    column_count: 15
    column_width: 40
    gutter_width: 10
  semantic_classes:
      "#footer, #header": ".span-15, div.span-15"
      "#main-column, #banner, #content": ".span-11, div.span-11"
      "#sidebar": ".span-4, div.span-4, div.last"
  plugins:
    - fancy-type
    - buttons

Now, the layout works correctly, but not in IE 6, where #sidebar gets
positioned under #main-column.
To fix this issue I have to explicitly set the 'span-11' class to
#main-column:

<div id='main-column' class="span-11">

Do you think this is a bug, or is there something wrong in my
settings.yml file?

Cheers,
Davide


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to