search for: 125px

Displaying 3 results from an estimated 3 matches for "125px".

Did you mean: 120px
2005 Aug 19
0
Effect.Appear problem
...t; CSS seccion and caja_texto_principal are: div.seccion { padding: 0px; margin-top: 20px; text-align: center; width:150px; height:150px; } div.caja_texto_principal { text-align: left; font-size:11px; color:#000000; overflow:hidden; position:absolute; color:#FFFFFF; top:50px; left:15px; width:125px; height:100px; } All seems to be ok (Fireworks and IE6), when the document loads and in the onload event I use new Effect.Appear(''s1'', { duration:1.0} ) but ... (of course the reason of my email :-) with IE6 the div with class "caja_texto_principal" (the text div...
2010 Sep 21
1
[PATCH] Introduce ability to select any kind of nic model, not just default or virtio.
...rk_config_ip input{ + width: 100px; } -.vm_network_config_net select, -.vm_network_config_mac input, -.vm_network_config_ip input { - width: 130px; +.vm_network_config_net select{ + width: 90px; } +.vm_network_config_model select { + width: 74px; +} +.vm_network_config_mac input{ + width:125px; +} .vm_network_config_remove { float: left; color: #0033CC; padding-top: 5px; padding-left: 5px; } + .vm_network_config_remove:hover { cursor: pointer; } diff --git a/src/task-omatic/task_vm.rb b/src/task-omatic/task_vm.rb index 9efda1c..a3391c0 100644 --- a/src/task-omatic/task...
2008 Jan 01
7
in_vertical_groups_of
...style="font-size: 80%"> <% group.each do |member| %> <%= render :partial => ''member'', :locals => {:member => member} %> <% end %> </tr> <% end %> </table> and then in the _member partial <td style="width: 125px"> <%= h "#{member.full_name(false)}" if member %> </td> or whatever your requirements are. This will display a list of members in three columns, top to bottom, left to right, like a phone book. If anyone discovers something I did poorly or just plain missed,...