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

RadGrid rgheader left border problem in mozilla firefox

2 Answers 98 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Rasheed
Top achievements
Rank 1
Rasheed asked on 19 Jan 2012, 09:59 PM
hi i have WebBlue RadGrid Control, everything is ok but whem viewing it in mozilla firefox there is a little space at the rgHeader at left, i've tried to style it in CSS using this snippet:

.RadGrid_WebBlue .rgHeader:first-child
{
    border-left-width: 1px;
}

but my style wasn't set and overrided by this CSS Style:
border-left-width: 0;

can any one help me please ?

2 Answers, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 20 Jan 2012, 04:37 AM
Hello,

Inorder to override default style you can add !important as shown. Without the !important modifier, the new CSS rule would not take effect.
CSS:
.RadGrid_WebBlue .rgHeader:first-child
{
    border-left-width: 1px !important;
}

Thanks,
Princy.
0
Rasheed
Top achievements
Rank 1
answered on 20 Jan 2012, 07:18 AM
thanks a lot 
Tags
Grid
Asked by
Rasheed
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Rasheed
Top achievements
Rank 1
Share this question
or