Results 1 to 2 of 2

Thread: ajaxtabscontent scrollable?

  1. #1
    Join Date
    Dec 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default ajaxtabscontent scrollable?

    1) Script Title: ajaxtabscontent

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...axtabscontent/

    3) Describe problem:
    I have seen this good script, I wanted to know if it is possible and as it can be made:
    1. to make the content of tab scrollable
    2. to put the tab under instead that over

    Sorry for My English
    Best regards, Ale

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Well:

    1) To get the content to be scrollable, you can use CSS's overflow property in combination with an explicit width/height for the content divs. So inside the .css file:

    Code:
    .contentstyle{
    border: 1px solid gray;
    width: 450px;
    height: 300px;
    overflow-y: scroll;
    margin-bottom: 1em; padding: 10px;
    }
    The two lines in red are new.

    2) Well, the tabs as is aren't designed to be inverted, which is what I gather you're asking. You may want to look through the CSS Library for an inverted tab interface you can use in place of the default one for the script.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •