Space above slides_container in slidesjs jquery slideshow carousel - css
I've implemented http://slidesjs.com/ on a new website.
I am getting 2 pixels space above slides_container in IE8. Can anyone tell me why? Is it in the CSS? the Javascript?
The test site is here: http://www.doublebdiner.com/
FYI, I am the build开发者_如何学运维er only, not the designer.
Please let me know if you would like me to post code here.
Thanks!
Seems to be the #tabnav 45px height.
On #tabnav
, remove the height: 45px
rule.
It's creating the "space" you're talking about, because the number 45
is a little too large. 43
would work better, but there's no need to declare a height
, so removing the rule is the best plan.
精彩评论