The 40 px is a default margin that all UL's get unless they are set otherwise in the style.css file. I see this same thing on my site now after testing it. You could possible add something to the tp-style.css to make this different, but it would affect all UL's.
ul{
margin-left: 20px;
}
You can set the px to whatever looks good to you.
Hi Ichbin,
I just wanted to give you an quick update on this little problem. I haven't actually changed the style.css to add the ul{ etc. However, I went in with Firebug and added it to the css, but when I made it 20px it adds 20 pixels to the 40, sliding it farther to the right. I then changed it to
ul{
margin-left: -25px;
}
with minus 25 instead of plus 20, and that made it look perfect. There is 1 other block on my site that uses the ul (it's the Mini-User CP block), but making this change with Firebug doesn't seem to affect that block at all, which is a good thing.
Also, the Enterprise-TP theme has a style.css but not a tp-style.css file.
I don't know if there any other block types that use the ul but I'm thinking that perhaps this little snippet should be added to the code in the TP Module block type for "Downloads: Show x New Files"
I don't know if this could be considered a bug, but I think I might bend Bloc's ear on this and ask him if he thinks that adding the ul into the block type might be a good idea.
ZarPrime