Fórum

How to remove padding and whitespace in the search container data Grid ?

thumbnail
Asif Billa, modificado 8 Anos atrás.

How to remove padding and whitespace in the search container data Grid ?

New Member Postagens: 15 Data de Entrada: 04/05/15 Postagens Recentes
Hi Everyone,

I have used Liferay UI serch Container grid for displaying data, How to remove the white spaces and padding from the grid ?

I have used custom css class for the same.PFB the code snippet in my jsp.

<liferay-ui:search-container-column-text name="Status" property="status" cssClass="grid-data-attributes" href="<%= transactivityDetailsURL.toString() %>"/>

<style>
#delImg:hover, #editImg:hover {
cursor:pointer;
}
.grid-data-attributes {
font-weight: normal;
font-size: 12px;
text-align: center;
padding:0;
margin:0;
white-space:nowrap;
}
</style>
thumbnail
Nate Cavanaugh, modificado 8 Anos atrás.

RE: How to remove padding and whitespace in the search container data Grid

Junior Member Postagens: 94 Data de Entrada: 27/11/06 Postagens Recentes
Hi Asif,
The approach I mentioned here would work for this as well.