Results 1 to 2 of 2

Thread: Tab Content

  1. #1
    Join Date
    Oct 2009
    Posts
    36
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Question Tab Content

    Tab Content
    http://www.dynamicdrive.com/dynamici...tabcontent.htm


    hello,

    Can someone look at my source file let me know how to clean up my tab content box?

    The font is not on top? I would also like to place a white background inside the text area and remove the slide show mode.

    init(3000)

    http://callcenterbuilding.com

    Thank you in advance.

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

    Default

    To apply a white background to the content area, you'd simply use CSS, specifically, inside the outermost DIV container for the contents:

    Code:
    <div style="border:3px solid gray; width:640px; height: 210px; padding: 5px; margin-bottom:1em; background:white">
    
    <div id="dog1" class="tabcontent">
    "
    To remove auto play feature, just remove the number passed into the .init() function inside the initialization code:

    Code:
    var mypets=new ddtabcontent("pettabs")
    mypets.setpersist(true)
    mypets.setselectedClassTarget("link")
    mypets.init()
    In general any style changes you wish to accomplish to the tabs can be done inside tabcontent.css
    DD Admin

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
  •