In dat geval moet je overgaan op jquery, willigt heb je hier iets aan:
Code:
$(function() {
$(window).scroll(function() {
if ($(document).scrollTop() > 271) {
$('#topmenu').css({"position":"fixed"});
}
if ($(document).scrollTop() < 271) {
$('#left').css({"position":""});
}
});
});
Op de plaats van 271 vul je het aantal pixels in dat het topmenu van de bovenkant van je scherm staat.
Als het goed is wordt het menu dan fixed zodra je verder scrolt dan dat aantal pixels.
Succes!
n9iels