OpenNTF.org - XPages Extension Library

My Links (Not logged in)
User Name Password
Hosted by Prominic.NET

   Project: XPages Extension Library (Managed by Philippe Riand, Niklas Heidloff, Dave Delay, Akihiro Kosugi, Maire Kehoe, Tony McGuckin, John Piermarini, Martin Donnelly, James Quill, Darin Egan, Padraic Edwards, Andrejus Chaliapinas, Lorcan McDonald, Simon McLoughlin, Paul Hannan)
Actions:


Response
SubjectHeres some CSS to do that
Created 07/09/2012 09:22 AM by Simon McLoughlin.
Modified<none> by Niklas Heidloff/Germany/IBM.
Body


Using css 3 attributes that won't be supported in IE:

.xspHtmlTrView td:nth-child(2)

{

width:50px !important;

}

This will work in IE:

.xspHtmlTrView > * + *

{

width:50px !important;

}