tocIcon vertical positioning
I have a custom TOC. Doing a few things to it via css and js. Only issue right now is the vertical positioning of the visited.png of an inset TOC item. Somewhere an inline style is changing the margin-top from the standard 14px to -5.93px. I'm trying to overwrite it with stuff like:
#tocContent div img {
margin-top: 14.06px !important;
}
or
div.tocEntryContainerStyle img {
margin-top: 14.06px !important;
}
No luck so far. Any ideas out there?


