You have several div's in your site with the id "content" You should remove all of these id's for two reasons:
- It is invalid (See: W3C "This attribute assigns a name to an element. This name must be unique in a document.")
- You do not actually reference it in your CSS -- you use the class "content" instead.
This may not be the cause of the problem you are experiencing -- however, it will cause you problems down the line, and it's always better to have valid markup. If you cannot modify the theme yourself I would suggest switching to a different theme that does produce valid markup, or else asking someone to modify the theme for you.
(A good way to check if a theme produces valid markup is to validate it using the W3C's Validation Service.)
Good luck!