Results 1 to 10 of 2267

Hybrid View

  1. #1
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Categories Dressing

    Maynards - You are using the button background image as the list marker. What you want is to use it as the background-image. Change this
    Code:
    #categories ul a {/*top categories*/
    
        display: list-item;
    
        list-style: disc inside url(../images/catbutton.gif);/*change to list-style: none; to remove bullet*/
    
        background: no-repeat;
    
        border: none;
    
        margin: 0;
    
        padding: 0;
    
        }
    
    
    
    #categories ul ul {/*subcategory lists*/
    
        list-style: none;
    
        background: #ffeecc;
    
        border: none;
    
        margin: 0 0 0.4em 0;
    
        padding: 0 0 0 1.3em;
    
        }
    
    
    
    #categories ul ul a {/*subcategories*/
    
        display: list-item;
    
        list-style: circle inside url(../images/catbutton.gif);/*change to list-style: none; to remove bullet*/
    
        background: #ffddbb;
    
        border: none;
    
        margin: 0;
    
        padding: 0;
    
        }
    to this
    Code:
    #categories ul a {/*top categories*/
        display: block;
        background: url(../images/catbutton.gif) no-repeat;
        border: none;
        margin: 0;
        padding: 0;
        }
    
    #categories ul ul {/*subcategory lists*/
        list-style: none;
        background: #ffeecc;
        border: none;
        margin: 0 0 0.4em 0;
        padding: 0 0 0 1.3em;
        }
    
    #categories ul ul a {/*subcategories*/
        display: block;
        background: #ffddbb url(../images/catbutton.gif) no-repeat;
        border: none;
        margin: 0;
        padding: 0;
        }
    You may want to add a height to these rules as well.

  2. #2
    Join Date
    Feb 2010
    Location
    Minnesota
    Posts
    391
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Thanks so much I give a try.

  3. #3
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Categories Dressing

    Also, since you are not using the chcategories version, you should delete stylesheet_chcategories_dressing.css, as a few of its rules may override the ones you have in stylesheet_categories_dressing.css.

  4. #4
    Join Date
    Feb 2010
    Location
    Minnesota
    Posts
    391
    Plugin Contributions
    0

    Default Re: Categories Dressing

    I did delete the file chcategories_dressing.css, but I am still having a few issues. I will keep working on it.... I am alot closer to what I am looking for with your help. Thank you

 

 

Similar Threads

  1. categories dressing
    By fw541c in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 19 Nov 2010, 09:29 PM
  2. Categories Dressing
    By wotnow in forum Addon Sideboxes
    Replies: 10
    Last Post: 7 Apr 2010, 03:06 AM
  3. Categories Dressing issue
    By Maynards in forum Addon Sideboxes
    Replies: 0
    Last Post: 13 Mar 2010, 10:51 PM
  4. Categories Dressing
    By Maynards in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 12 Mar 2010, 11:05 PM
  5. Categories Dressing
    By PGlad in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 7 Aug 2007, 07:05 PM

Posting Permissions

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