Hello friends, I'm having this slight problem, my site http://www.airlinescoup.com I want to get the text, where it says EasyJet etc to come up more, I reduced the height of the header to 100 from 200, I'll work on that part but how do i move that main part up?! Where is it in the stylesheet, should I post the stylesheet? Thanks in advance!
That can cause accessibility issues as some search engines won't read out the text that's been set to display: none; - instead you might want to set its position to absolute, and then push it off the left edge so the search engines can still read it. For example: #rollingarchives { position: absolute; left: -9999em; /* this will neve be seen on the screen, but screen readers can still read the content just fine */ } Code (markup):