This is the fullscreen script that I found at previous topic in the forum.
It works but it has a scrolbar and I don’t want it. I have tried to remove it by the methods I guessed but I couldn’t manage. Can you show me how to change the script to remove the scrollbar.
I managed it, I found it from the old messages that Electrongeek explained it before. I attached his message again, maybe someone can use it.
electrongeek:
The link I just gave you does open the site in full screen without the explorer buttons, open their example and see. The only thing that is left is the scrollbar and if you want to get rid of that then just add this to the body tag of the html page being opened in full screen.
I tried it. I don’t know the logic why one is supported by IE and the other one is supported by both IE and NS but at least I can use it . By searching old forums, practicing and most importantly by asking people in the forum, I already learned many important things during one week.
SCROLL=“no” is only supported by IE because IEs HTML interpretation has that in it, while Netscapes doesn’t. They run off two different engines so cross-browser coding can sometimes be a pain.
The CSS method works because both browsers implement CSS and even though there are still CSS cross browser complications, much of the more functional things in it are supported by most browsers that are CSS enabled.
I put the ccs script (that you advice) just below the body of the html page being opened in full screen. It works now but I am not sure that Is it the exact place for that?