On 19 February 2011 15:31, Bhasker Harihara <[email protected]> wrote:
> Hi All,
>
> I am using blueprint framework for my UI design.
>
> I have a set of static pages which I have displayed at the correct location
> using <%= yield >.
>
> Now I want to place a image for each of those static pages at a different
> location.  say <div class="images" or id="image" >

I don't understand what it is that you do not know how to do.  If you
want an image in a div with appropriate class just do
<div class="images"><%= image_tag('your_image.png') %></div>
or you could put the class on the image itself
<%= image_tag( 'your_image.png', :class => 'images' ) %>

Colin

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" 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/rubyonrails-talk?hl=en.

Reply via email to