http://www.jokesrealm.com/drupal-6.2/

is my site, i want to change the width of the td left-hand side to make it shorter,
i identified this as:

now, in my template/style.css i define:

#sidebar-left {
background-color: #FFFFFF;
width: 10px;
}

as an example, but nothing changes, why is that
i also tried

#sidebar-left td {
width: 10px;
background-color: #FFFFFF;
}

nothing changes, however, only background color changes,
but the width remains the same, why is that..can someone help me thanks

Comments

level02’s picture

style.css (line 91)
#sidebar-left .block {
width:135px;
}

common.css (line 102)
.block {
width:130px;
}

Check out Firebug it's helpful.

sszalla’s picture

10 pixels is very small. The content of your td is wider than that, which is probably why the 10px is being ignore.

Suggest you Google 'css width' or install Firebug (and Firefox if you haven't already got it). Firebug is great for viewing where your page elements are getting their style from.