Fullscreen without any menus?

R

Rene Laufs

Hi there!

I was wondering if someone could tell me the html code I need to open a
browser windows in full screen without any menu's and all that stuff?

Cheers mates,
Bye!
 
M

Mark Parnell

Hi there!
G'day.


I was wondering if someone could tell me the html code I need to open a
browser windows in full screen without any menu's and all that stuff?

In Mozilla, press F11. Other browsers are probably similar.

Oh, you want to do that to *my* browser? Forget it; you can't. That's
why it's *my* browser, not yours.
 
C

chris

Rene Laufs said:
Hi there!

I was wondering if someone could tell me the html code I need to open a
browser windows in full screen without any menu's and all that stuff?

Cheers mates,
Bye!

Force fullscreen is always a bad idea. Most people will immediately press
alt+f4 and your site is gone. At least I would do so.

chris---
 
W

Weyoun the Dancing Borg

Rene said:
Hi there!

I was wondering if someone could tell me the html code I need to open a
browser windows in full screen without any menu's and all that stuff?

Cheers mates,
Bye!
Well, I wont be visiting *your* website then.
 
L

Leif K-Brooks

Rene said:
I was wondering if someone could tell me the html code I need to open a
browser windows in full screen without any menu's and all that stuff?

Press your F11 key. If you're talking about manipulating *my* window as
a web designer, don't; I choose how big I want my windows, and a
full-screen window can pretty stupid on a multi-monitor setup (I'm sure
Toby or someone will post a photo).
 
M

Mark Parnell

full-screen window can pretty stupid on a multi-monitor setup (I'm sure
Toby or someone will post a photo).

David has a good one. I'll see if I can find it.
 
C

Cameron

Rene said:
Cheers!
After a couple of hours searching the net I constructed myself almost the
same code. But still I have one problem: how can I get rid of the unused
scrollbar on the right?

Thanks again!
Bye

You don't because if my eyes are having an off day I want to be able to
make your text bigger and scroll down to see it all.

N.B. that was just an example, I use a good browser (Firebird) that
doesn't display a scroll bar if you don't need it :D

~Cameron
 
W

Weyoun the Dancing Borg

Rene said:
Cheers!
After a couple of hours searching the net I constructed myself almost the
same code. But still I have one problem: how can I get rid of the unused
scrollbar on the right?

have you considered that someone running in 640x480 may NEED that scrollbar?
 
R

Rene Laufs

Weyoun the Dancing Borg said:
have you considered that someone running in 640x480 may NEED that
scrollbar?

Of course, though I believe that today 800x600 is more common and therefore
the whole site will be designed for 800x600. But still at least IE (but I
believe Netscape too) displays a scrollbar at the right site, even when it's
not used and I'd like to get rid of it.

Bye!
 
R

Richard

Rene said:
Hi there!
I was wondering if someone could tell me the html code I need to open a
browser windows in full screen without any menu's and all that stuff?
Cheers mates,
Bye!

You can turn off the menu bar, but will you have return visitors?
Popup ads do this. That's ok as the menu bar isn't needed there.
But never take control of the browser completely if you want to have a
viable website.
 
D

DU

Rene said:
scrollbar?

Of course, though I believe that today 800x600 is more common and therefore
the whole site will be designed for 800x600. But still at least IE (but I
believe Netscape too) displays a scrollbar at the right site, even when it's
not used and I'd like to get rid of it.

Bye!

Mozilla-based browsers will not render a scrollbar unless the content
overflows the windows [requested] dimensions. In other words, if you
remove the scrollbar(s) in Mozilla-based browsers, then you are clipping
the content, your content away from your visitors. They won't notice
(visual feedback) there might be more content if you remove scrollbar(s).

In MSIE, all you have to do is set this css rule:
html {overflow:auto; margin:8px;}
and you'll remove the inactive scrollbar you're mentioning due to the
default MSIE browser css rule
html {overflow:scroll;}.
With
html {overflow:auto}
scrollbars will only appear in MSIE if needed, if content overflows
windows [requested] dimensions.

What you do with a fullscreen mode is quite wrong, IMO. Even MSDN warns
developers of doing what you do. Without statusbar, users are not
informed of connections, secure socket, download notifications. Without
menubar, they are less in control of their web visit and definitively
feel not safe. All your posts simply ignore this (and many more
usability matters) and are only motivated by a will to impose your
preference.

DU
 
D

David Dorward

Rene said:
I know what you mean. But it was more or less planed as an option. The
visitor can choose between html and flash and both in full screen or
windows mode.

That option is built into their browser already (if it isn't, then you
couldn't fake it anyway).
 
W

Weyoun the Dancing Borg

Of course, though I believe that today 800x600 is more common and therefore
the whole site will be designed for 800x600. But still at least IE (but I
believe Netscape too) displays a scrollbar at the right site, even when it's
not used and I'd like to get rid of it.

It might be more common but then you are excluding visitors from your
site. And you're designing it for 800x600? wow. That means when I see it
it will be teeny tiny, because I use 1600x1200, and if all I have is a
little box 800x600 with itty bitty pictures and writing, I will not
persue the site further.

I could always increase the text side of course, but that will screw up
your site layout, which will make me think you've designed it badly. So
I will not persue the site further.

Of course this is all accademic since the moment I see your site attempt
to maximise itself without any control bars, I will alt+f4 it and your
site will not be visited by me again.

I'm not being nasty, that is how i view website on the internet, as do
many other people.

Why don't you give them the *choice* of whether they want to view the
site in full screen? You could have one full screen site, and one that
doesnt use full screen.
 
K

Kyle Fox

scrollbar?

Of course, though I believe that today 800x600 is more common and therefore
the whole site will be designed for 800x600.

Have you considered being smart and desinging a page that is renderable at
any resolution? Its not like its hard, and its often much easier to do
than to try and mash together a page for a specific resolution. And then
everyone can read your page, not just the small segment of iinternet users
that have a 800x600 display and dont immediately go somewhere else when
you take over *their* computer by commanding *their* browser to use the
entire display, and then give them none of their controls.

- Kay
 
S

Steve R.

Kyle Fox wrote in message ...
Have you considered being smart and desinging a page that is renderable at
any resolution? Its not like its hard, and its often much easier to do
than to try and mash together a page for a specific resolution.
http://kayfox.org/

But your own website, as shown in your sig doesn't conform LOL.

Horizontal scroll bar at 800x600 and set at fixed width in larger browsers
:~(
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top