Results 1 to 4 of 4

Thread: cannot figure this out

  1. #1
    Join Date
    Dec 2005
    Posts
    133
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default cannot figure this out

    I'm trying to change the size of these tabs to something a little wider and vertically higher. I'd also would not mind a small icon next to each tab. I want the font size larger as well.

    I would appreciate if someone can tell me which part of the below css needs to be adjusted. I tried a few spots, did not make a difference odd enough.

    The actual code in the page is

    <div class="tabbertab">

    The tab stylesheet is this:

    HTML Code:
    #current_specials {
    background-color:#28bbd5;
    background-image:url(../images/specials_bgd.gif);
    background-repeat:no-repeat;
    background-position:top right;
    color:#5c939d;
    }
    
    .specials_intro {
    background-color:#dbf4f8;
    padding:5px;
    color:#5c939d;
    }
    
    
    ul.specials_items
    {
     margin:0px;
     padding: 1px 0px 0px 0px;
    }
    
    ul.specials_items li
    {
     list-style:none;
     margin:0px;
     padding:2px;
     border-bottom: 1px solid #e5f4f6;
    }
    
    .viewbutton {
    background-image:url(../images/viewbutton_bgd.gif);
    line-height:24px;
    color:#FFFFFF;
    margin:10px 5px 10px 5px;
    }
    
    .viewbutton a:link, .viewbutton a:visited, .viewbutton a:active {
    color:#FFFFFF;
    text-decoration:none;
    }
    
    .viewbutton a:hover {
    color:#FFFFFF;
    text-decoration:underline;
    }
    
    
    
    
    /*--------------------------------------------------
      REQUIRED to hide the non-active tab content.
      But do not hide them in the print stylesheet!
      --------------------------------------------------*/
    .tabberlive .tabbertabhide {
     display:none;
    }
    
    /*--------------------------------------------------
      .tabber = before the tabber interface is set up
      .tabberlive = after the tabber interface is set up
      --------------------------------------------------*/
    .tabber {
    }
    .tabberlive {
     margin-top:1em;
    }
    
    /*--------------------------------------------------
      ul.tabbernav = the tab navigation list
      li.tabberactive = the active tab
      --------------------------------------------------*/
    ul.tabbernav
    {
     margin:0;
     padding: 3px 0px 0px 0px;
    }
    
    ul.tabbernav li
    {
     list-style: none;
     margin: 0;
     display: inline;
    }
    
    ul.tabbernav li a
    {
     padding: 3px 0.5em;
     margin-left: 3px;
     background-color: #18a2ba;
     text-decoration: none;
     color: white;
    }
    
    ul.tabbernav li a:link { color: white; }
    ul.tabbernav li a:visited { color: yellow; }
    
    ul.tabbernav li a:hover
    {
     color: #ffffff;
     background: #3dd6f1;
    }
    
    ul.tabbernav li.tabberactive a
    {
     background-color: #fff;
     border-bottom: 1px solid #fff;
     color:#189bb2;
    }
    
    ul.tabbernav li.tabberactive a:hover
    {
     color: #ff722b;
     background: white;
     border-bottom: 1px solid white;
    }
    
    /*--------------------------------------------------
      .tabbertab = the tab content
      Add style only after the tabber interface is set up (.tabberlive)
      --------------------------------------------------*/
    .tabberlive .tabbertab {
     padding:1px 6px 2px 6px;
     margin:3px;
     background-color:#FFFFFF;
    
     /* If you don't want the tab size changing whenever a tab is changed
        you can set a fixed height */
    
     /* height:200px; */
    
     /* If you set a fix height set overflow to auto and you will get a
        scrollbar when necessary */
    
     /* overflow:auto; */
    }
    
    /* If desired, hide the heading since a heading is provided by the tab */
    .tabberlive .tabbertab h2 {
     display:none;
    }
    .tabberlive .tabbertab h3 {
     display:none;
    }

  2. #2
    Join Date
    Dec 2005
    Posts
    133
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Anyone please?

  3. #3
    Join Date
    Mar 2006
    Location
    Cleveland, Ohio
    Posts
    574
    Thanks
    6
    Thanked 5 Times in 5 Posts

    Default

    Mess with padding and line-height.
    Thou com'st in such a questionable shape
    Hamlet, Act 1, Scene 4

  4. #4
    Join Date
    Dec 2005
    Posts
    133
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    What part? There are several locations for that.

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
  •