Three column grid with fixed width sidebars and fluid center.I am having a hard time with this. I have these properties:\[code\]#sidebar { width: 65px; padding: 0px; }#content { width: 100%; }\[/code\]Then it is all called in my template like this:\[code\]{% block left_sidebar %} Test {% endblock %}{% block content %} Content {% endblock %}{% block right_sidebar %} Test {% endblock %}\[/code\]However, it puts the left sidebar on top of the "content" and the right sidebar below it. How can I overcome this?