This is a migrated thread and some comments may be shown as answers.

Remove Padding RadGrid_Vista

1 Answer 79 Views
Grid
This is a migrated thread and some comments may be shown as answers.
mSchmidt
Top achievements
Rank 1
mSchmidt asked on 21 Oct 2008, 07:36 PM
Hi

I am trying to remove padding within my grid, but nothing happens when i do as below.

No difference at all.


        .GridRow_Vista, .GridRow_Vista td, .GridAltRow_Vista td, .GridEditRow_Vista td, .GridFooter_Vista td, .GridGroupFooter_Vista td, .GridFilterRow_Vista td, .GridHeader_Vista, .ResizeHeader_Vista, .GroupHeader_Vista td  
        {  
            padding0px;  
            margin0px;  
        } 

1 Answer, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 22 Oct 2008, 04:53 AM
Hi,

Try removing padding for the Grid as shown below and let me know if it helps.

ASPX:
<head runat="server"
    <title>Untitled Page</title> 
  <style type="text/css" > 
     
     .GridRow_Vista, .GridRow_Vista td, .GridAltRow_Vista td, .GridEditRow_Vista td, .GridFooter_Vista td, .GridGroupFooter_Vista td, .GridFilterRow_Vista td, .GridHeader_Vista, .ResizeHeader_Vista, .GroupHeader_Vista td   
        {   
            padding: 0px !important;   
            margin: 0px !important;   
        }  
  </style> 
</head> 


Regards
Shinu.
Tags
Grid
Asked by
mSchmidt
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or