tags:

views:

42

answers:

1

Hi,

I'm using MVC with the grid helper seen around. I'm trying to extend a column header since I have to put up and down arrows for a certain column. For example I call my header column sh and have the following using css to try to increase it but to no avail. I'm wondering if anyone has a better idea. I have heard of using javascript but I haven't used it before.

th.sh, td.sh
{
    width:50px;
    height:300px;
    border-top: 100px;
    padding-top: 100px;
    text-align: center;
}
A: 

Have you checked the specificity of your selector? (see: http://www.w3.org/TR/CSS2/cascade.html#specificity ). Another property may be overriding what you are trying to set with th.sh

Will Peavy