Hide scroll bar, but while still being able to scroll

I want to be able to scroll through the whole page, but without the scrollbar being shown. In Google Chrome it’s: ::-webkit-scrollbar { display: none; } But Mozilla Firefox and Internet Explorer don’t seem to work like that. I also tried this in CSS: overflow: hidden; That does hide the scrollbar, but I can’t scroll … Read more

What does do?

What’s the difference if one web page starts with <!DOCTYPE html> <html> <head> <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> and If page starts with <!DOCTYPE html> <html> <head> <!– without X-UA-Compatible meta –> If there is no difference, I suppose I can just ignore the X-UA-Compatible meta header, since I just want it to be rendered in most … Read more

IE 7 and 8 Not Showing Perfect Design View [WordPress]

I absolutely hate IE, specially versions 6, 7 and 8. When you are designing a wordpress theme, you have to style it twice, once for proper browsers and then for the IE ancients. The other big thing to remember, these ancients don’t have support for media queries. So to solve your problem, create a stylesheet … Read more