<% if flash[:error] %>
- <div id="error"><%= flash[:error] %></div>
+ <p class="error">
+ <%= image_tag("notice.png", :class => "small_icon", :border => 0) %>
+ <%= raw flash[:error] %>
+ </p>
<% end %>
<% if flash[:warning] %>
- <div id="warning"><%= flash[:warning] %></div>
+ <p class="warning">
+ <%= image_tag("notice.png", :class => "small_icon", :border => 0) %>
+ <%= raw flash[:warning] %>
+ </p>
<% end %>
<% if flash[:notice] %>
- <div id="notice"><%= flash[:notice] %></div>
+ <p class="notice">
+ <%= image_tag("notice.png", :class => "small_icon", :border => 0) %>
+ <%= raw flash[:notice] %>
+ </p>
<% end %>