CSS Styles accidentally removes my scrollbar in wordpress -
i'm having trouble css styles in wordpress. chrome removing scrollbar, while in ie page fixed , doesn't scroll @ all. i've disabled admin bar because seemed causing trouble, still can't see scrollbar.
here's page http://www.kareemkwong.me/
thanks help!
as using modernizer, adds class video
html
tag automatically. state browser supports video tag.
in custom stylesheet, however, have custom video
class overflow: hiddden;
. consequently, whole page set overflow: hidden
.
you can either
- remove
overflow: hidden
in custom video class if not needed - rename custom video class , change html accordingly
- add class videos handle overflow
in css:.video.nooverflow { overflow: hidden; }
.
in html: addnooverflow
class element hasvideo
class (class="video nooverflow"
).
Comments
Post a Comment