nitinthewiz / ghost-phantom

Phantom theme for Ghost
MIT License
433 stars 121 forks source link

Tags cant not click #16

Closed edwardstudy closed 9 years ago

edwardstudy commented 10 years ago

Hi, Thank you because I have used your theme on my blog,but I think it has a problem of "click tags". When I go to homepage, the second tag and others can not click right way in left sidebar(class="sidebar text-right meta")(only one tag can be clicked), so I changed the css of article lick that

article {
    -webkit-animation-delay:1.25s;
    animation-delay:1.25s;
    -webkit-animation-duration:1s;
    animation-duration:1s;
    padding:0px 0 40px;
    margin-top: 80px;
}

Is it a good way to fix it, or maybe you have a better way?

Thx.

haydenbleasel commented 10 years ago

The article tag is overlapping the absolute-positioned .sidebar element. I'll fix this up when I get a chance, sorry!

edwardstudy commented 10 years ago

I'm really looking forward to seeing your fix,^_^

kyleroche commented 9 years ago

I used this... I think it has less of an offensive whitespace than the 80px. But seems to work fine:

article { -webkit-animation-delay:1.25s; animation-delay:1.25s; -webkit-animation-duration:1s; animation-duration:1s; padding:40px 0; position: relative; width: 700px; margin: 0px auto; }