PDA

View Full Version : Hide scroll bars on page load?


dan18088
03-22-2004, 10:28 PM
Can you hide scroll bars on page load since I am not clicking a link to open the page. The page is being open with the meta refresh command and looping through a database......see below.

<META HTTP-EQUIV=refresh CONTENT=10;URL=Rep_Board.asp?ID=<%=Current_Rep%>&Sale=<%=Next_Sale%>


This page loads every 10 seconds all day long with no user input (it displays sales on a Big Screen TV). Can I hide the scroll bars?


Thanks in advance,
Dan

brothercake
03-22-2004, 10:43 PM
You can do this:

body { overflow:hidden; }

I'm sure I don't need to tell you not to do that on a regular site ;)

dan18088
03-23-2004, 11:26 AM
That worked great.