0

I have a website here: bgflirt.com. The problem is that the div containing the flash and the other content (on the right) has to be able to overflow the parent element. But the parent element should have overflow hidden. The result is that the div on the right is cut whenever the div in the middle has no more content to display. How do I let the right div overflow the parent one ? So I can see the entire menu on the right ?

2 Answers 2

1

A quick fix is just adding a min-height to #content:

#content {
min-height: 500px;
}
Sign up to request clarification or add additional context in comments.

Comments

1

If the items (or number of items) in the "right div" do not change frequently, the easiest fix is to add this rule to #content :

min-height: 440px;

I picked 440px because that is the height of the "right div" according to Firebug.

Also, I feel obliged to point out that the HTML/CSS structure of your site is not very good. You should consider doing something about it, or you could continue to have problems making simple changes to the layout of your site.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.