inconsistent appearance or not of image as link label
Support Ticket
http://test.dwagn.org/blog and Blog both start with a link something like:
[[/Wagn_blog_entries.rss |
]]
and on test it shows up, but here it doesn't.
It seems to be just not rendering the link. A can't imagine any recent code updates that may effect this. Weird.
Maybe something in CSS?
bingo. some custom positioning for the blog page in *css.
so...anyone who knows CSS better than I do want to fix it on wagn.org ?
.SELF-blog .titled-view {
padding-top: 20px;
margin-top: 20px;
border-top: 2px solid #666;
}
.SELF-blog .titled-view > h1 {
padding: 10px 0 20px 0;
}
.SELF-blog > .content > div > a {
float: right;
position: relative;
top: -35px;
}
I'm thinking that the top: -35px is related. What's that supposed to do? What happens if you take it out?
fixed.