Hello kyllle,
If you add a background color to #productRight you can see what's happening.
Try this -
Code:
#productRight{
position:relative;
margin-left:47px;
padding: 0 5px;
background: #000;
}
You can see you've covered your left column with #productRight so the links are not available.
A 2 column layout is typically one column floated and the other column margined over enough to allow room for the floated column. Your margin-left:47px; just isn't big enough.
Try this instead -
Code:
#productRight{
position:relative;
margin-left:465px;
padding: 0 5px;
background: #000;
}