I have got a CSS class like so:
.simpleClass { width: 25px; }
And I have a matching element:
you can specify the style of the element by using .css like
.css
$("div.simpleClass").css("width","25px");
have a look at jQuery.css()