PDA

View Full Version : Additional.css drama


PattiOz
11-25-2012, 03:43 AM
My additional.css is not working consistently.

I am attempting to add this code into additional.css:

#posttree {
overflow: auto;
padding: 2px;
text-align: left;
border: 1px solid #C89D5B;
border-top: 0;
white-space: nowrap;
}

Which basically just removes the height restriction of the box (default is 150px) and changes the border to a different color in the threaded mode view.

I have already tried hard refresh, putting height: auto; there, nothing works.

What am I doing wrong?

Thanks for any help. I'm not a coder.

Lynne
11-25-2012, 02:41 PM
Can we see the page where this is being used and please point out exactly where you are using it and what you expect the results to be.

John Lester
11-26-2012, 05:31 AM
I've always used .posttree { ... is there a difference between that and #posttree { ?

Lynne
11-26-2012, 02:43 PM
.posttree is a class and #posttree is an id.

John Lester
11-28-2012, 01:59 AM
OH ok that answers a couple of questions :D Thanks Lynne ;)