Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
styling; overlapping title?
I've been mucking with this since last night; the title at the top of each discussion overlaps onto the top "PageInfo" border. I can't find what css style is controling this to fix it. The rest of the customizations to the style have been extremely easy to locate and fix. This one has me stumped though. If someone could take a look and give me suggestions, I'd much appreciate it:
http://seahorses.ws/Vanilla/comments.php?DiscussionID=1&page=1#Item_1
0
This discussion has been closed.
Comments
either add a negative top margin to:
#CommentsPage .ContentInfo h1, e.g.
margin-top:-10px;
which brings it in line with the "bottom of page" notice
or add more top margin to:
#CommentsPage .ContentInfo.Top .PageInfo, e.g.
margin:15px 0px 0px 0px !important;
You can use the firefox web developer toolbar "CSS > View Style Info" to show you exactly what CSS you need to look for, then you can look for (multiple) instances of it in the edit CSS window and try it out. Here .PageInfo is defined on several occasions, which is probably why you weren't having any luck.