Probably error, my jQuery/JS isn't all that. Any ideas how to make this work? Currently it is correctly setting the background colour, but the height remains the same :(
<script type="text/javascript">
$(document).ready(function() {
var inside_height = $(".inside").height() - 500;
$(".artists").height(inside_height).css(backgroundColor:"green"});
});
</script>
Thanks!