Hello, I am just starting out on blueprint and using with rails 2.3.
for some reason the last column in my code is not spaced over as the
last column but is being placed to the right directly under the first
two spans. Any idea as to what I am doing wrong? Thanks in advance.
[code]
<div class="container showgrid">
<h1>Listing products</h1>
<% for product in @products %>
<div class="span-24">
<div class="span-4">
<%= image_tag product.image_url, :class => 'list-image' %>
</div>
<div class="span-15 prepend-1">
<p> <h3><%=h product.title %></h3></p>
<p> <%=h truncate(product.description.gsub(/<.*?>/, ''),
:length => 80) %></p>
<div class="span-4 last ">
<%= link_to 'Show', product %>
<%= link_to 'Edit', edit_product_path(product)
%>
<%= link_to 'Destroy', product,
:confirm => 'Are you
sure?',
:method => :delete %>
</div>
</div>
<% end %>
<hr />
<div class="span-24">
<%= link_to 'New product', new_product_path %>
</div>
</div>
[/code]
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---