Hi there.
I currently have a website and on a couple of my pages there are horizontal toolbars that I wish to remove. I'm pretty sure that there is a way of removing these but am not sure how.
Just wondering if anyone had any ideas?
David
Hi there.
I currently have a website and on a couple of my pages there are horizontal toolbars that I wish to remove. I'm pretty sure that there is a way of removing these but am not sure how.
Just wondering if anyone had any ideas?
David
Do you mean scoll bars? Or the tool bar at the top of the IE/Firefox page?
If it's just scroll bars that's not too bad. Using CSS is cleaner:
<html>
<head>
<title>My Title</title>
<style>
html {overflow-x: hidden;}
</style>
</head>
<body>
...
</body>
</html>
However, if it's the toolbar at the top. The only way I can think of is doing a function like F11? Full Screen F11 Key. This would give you a good pointer on how to do that. That's the only thing I can think of.
Hope that helps!
Shrimpersfan (7th July 2008)
HI Pashers.
Thanks for the reply, what I am doing is opening this website within a CRM we use. We do not want the webpage to load in full screen. A scrollbar along the right is fine but we want to remove the scrollbar along the bottom. I think your code may work.
David
There are currently 1 users browsing this thread. (0 members and 1 guests)