Gossamer Forum
Quote Reply
treecats
I can't seem to find in include_form, the CSS file or treecats.js where to change the setting so that the bullet is not indented (i.e., * No category selected -- I don't want the bullet to be indented what looks to be 15-20 pixels).

How do I fix this?

You can see what I mean at www.WiredHOCKEY.com/cgi-bin/links/add,cgi.

Thanks,

Adam
Quote Reply
Re: [Jobu] treecats In reply to
Here's a screenshot. I am trying to get rid of the indent and bullet next to "No Category Selected"


Quote Reply
Re: [Jobu] treecats In reply to
Copy the CSS from the luna_core.css file. Search for treecats.

Adrian
Quote Reply
Re: [brewt] treecats In reply to
Which is the one that is displaying the bullet/indent? I can't seem to fix it.

Code:

/* treecats */
#content .treecats-selection-summary ul, #content .treecats-selection ul {
margin: 0px;
}
.treecats-selection-summary li a, .treecats-selection li a {
margin-top: 2px;
margin-left: 5px;
}
.treecats-selection-summary a, .treecats-selection a {
font-size: 9px;
}
.treecats-selection-summary a:visited, .treecats-selection a:visited {
color: #212126;
}
.treecats-selection-current {
font-weight: bold;
}
.treecats-category-info img {
border: 0px;
padding: 2px;
vertical-align: middle;
}
.treecats-children {
padding-left: 15px;
}
.treecats-selected span, li.treecats-selected {
font-weight: bold;
}
.treecats-category a:link, .treecats-category a:visited {
color: #212126;
text-decoration: none;
}
.treecats-category a:hover {
text-decoration: underline;
}
#content ul.treecats-links {
padding-left: 15px;
margin: 0px;
}
.treecats-links li {
line-height: 1.25em;
list-style: circle;
}
Quote Reply
Re: [Jobu] treecats In reply to
try changing
Code:
.treecats-links li {
line-height: 1.25em;
list-style: circle;
}

to
Code:
.treecats-links li {
line-height: 1.25em;
list-style: none;
}

Philip
------------------
Limecat is not pleased.
Quote Reply
Re: [Jobu] treecats In reply to
Oh yeah, I forgot the bullet and indent would be another rule in the CSS file (the #content li rule, but don't use that).

To remove it use:
Code:
.treecats-selection-summary, .treecats-selection {
padding: 0px;
list-style: none;
}

Adrian