• Welcome to Tux Reports: Where Penguins Fly. We hope you find the topics varied, interesting, and worthy of your time. Please become a member and join in the discussions.

Get Rid of "Favorites" in IE8

S

Stew

Flightless Bird
We have a web app that we built for a customer. The app is tied to IE. The
app is set to display at a set resolution using IE. IE is only to show the
URL line and the menu bar. An extra toolbar throws things off. Scrollbars
appear where they shouldn't, etx.

No matter what I do, I can't get rid of "Favorites" and the line it's on.
Any suggestions? Thanks.
 
R

rob^_^

Flightless Bird
Hi Stew,

Please define what you mean by Web app?

Network administrators remove features from IE using Group Policy which 'web
apps' cannot do.

You can create a burlesque version of IE using IEAK that has the features
you want or you can use the window.open features arguments to open your web
app from a Internet shortcut in a single window with only the features you
want.

There is a new window.open feature to either inherit the IE zoom settings or
to display the window at 100% zoom. Normal practice though is not to
hardwire your page layout and metrics for Accessibility reasons.

Scrollbars appear where they shouldn't..... add this style snippet to your
page

html body (height:100%)

Your body tag should look like

<body scroll="no" style="overflow:hidden; background-color:#000000;
padding:0px 0px;margin:0px 0px"
onload="document.getElementById('WLSearchBoxInput').focus();">

with the depreciated scroll attribute and also the overflow:hidden rule to
cater for Quirks and Standards mode browsers.

Regards.

"Stew" <Stew@discussions.microsoft.com> wrote in message
news:5D36910A-DBD9-456D-9017-9D2F5FBA661F@microsoft.com...
> We have a web app that we built for a customer. The app is tied to IE.
> The
> app is set to display at a set resolution using IE. IE is only to show
> the
> URL line and the menu bar. An extra toolbar throws things off.
> Scrollbars
> appear where they shouldn't, etx.
>
> No matter what I do, I can't get rid of "Favorites" and the line it's on.
> Any suggestions? Thanks.
>
 
P

PA Bear [MS MVP]

Flightless Bird
Developer-specific resources include:

MSDN IE Development Forum (post such questions here instead)
http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/threads

IE Developer Center
http://msdn.microsoft.com/en-us/ie/default.aspx

Learn IE8
http://msdn.microsoft.com/en-us/ie/aa740473.aspx

HTML and DHTML Overviews and Tutorials
http://msdn.microsoft.com/en-us/library/ms537623.aspx and

Cascading Style Sheets (CSS)
http://msdn2.microsoft.com/en-us/ie/aa740476.aspx

Expression Web SuperPreview for Internet Explorer (free, stand-alone visual
debugging tool for IE6, IE7, and IE8)
http://www.microsoft.com/downloads/...FamilyID=8e6ac106-525d-45d0-84db-dccff3fae677

Expression Web SuperPreview Release Notes
http://www.microsoft.com/expression/products/Web_SuperPreviewReleaseNotes.aspx

Validators:
http://validator.w3.org/
http://jigsaw.w3.org/css-validator/


Stew wrote:
> We have a web app that we built for a customer. The app is tied to IE.
> The
> app is set to display at a set resolution using IE. IE is only to show
> the
> URL line and the menu bar. An extra toolbar throws things off.
> Scrollbars
> appear where they shouldn't, etx.
>
> No matter what I do, I can't get rid of "Favorites" and the line it's on.
> Any suggestions? Thanks.
 
Top