PDA

View Full Version : Removing border from Most Commented


jeffusion
05-01-2008, 04:10 AM
Is there a way to remove/hide the table border from the Most Commented addon? I've played around in the addon file, but with no success.

Here is the page I'm using it on: http://www.jeffusion.com/index.php?x=about

Thanks!

Dkozikowski
05-01-2008, 04:23 AM
Add the following to the horizon.css file.


table.thumbnails {
border: none;
}

jeffusion
05-01-2008, 05:00 AM
I tried pasting that into the css file, but it didn't make a difference. Any other ideas? I appreciate your help.

Dkozikowski
05-01-2008, 05:22 AM
That's all I got.

It should work. Try setting it to 0px instead of none.

Maybe that will make a difference?


table.thumbnails {
border: 0px;
}

jeffusion
05-01-2008, 05:27 AM
Thanks, that did the trick!