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: add nooverflow class element has video class (class="video nooverflow").

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -