freddydoggie
freddydoggie

Reputation: 9

jQuery auto height adjust for tabs

I am having a problem with the jQuery tabs. I am working on a website for a school and need some help with some javascript. You can see the page here: 71.50.205.125/staugie.net/school/admin, it is my working address. I added a user account for the username of "test" and password of "hi". Then once logged in, goto reports tab and see the right sidebar. See anything wrong? The jQuery background is not auto-extending. Feel free to use Google Chrome developer tools.

Upvotes: 0

Views: 304

Answers (1)

Thanos
Thanos

Reputation: 3059

I can see your reports folder properly... Your "tabs" content is not expanding because your folder's class asside has a fixed position.

What you can do is either put another div inside tabs for your tabs content and float that left and the asside right (with a relative positioning)

or

put a min width on your tabs.

min-height: 500px;

Upvotes: 1

Related Questions