Delayed font on the screen in Front Page is making me crazy!

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I work in a long Web page, the typing is delayed. After I type, the
letters don't appear for a few seconds on the screen. I am using a 2003
program, and otherwise, in other applications, no problem. Can you help
correct the problem?

Also, how do I color the slides (scroll bars) on a page? I don't like the
gray, and would prefer to make them white.
 
1. How long since you "cleaned" up the computers drive??
Close FrontPage and then clear the Temporary Internet, Cookie and History files.
Then do a windows search for files named *.tmp and delete all found ( with the asterisk: *.tmp )
Then do the same for *.web

Then reopen FrontPage.

As for the scroll bars, it's done with CSS. It only works in Internet Explorer, and it will *not*
validate with W3C

However, place this in the head section. You can use common color names: white, blue, red etc.
instead of the rgb values.


<style type="text/css">
html{
scrollbar-arrow-color: rgb(0,0,255);
scrollbar-base-color: rgb(0,128,128);
scrollbar-track-color: rgb(211,253,254);
scrollbar-darkshadow-color: rgb(0,128,128);
scrollbar-face-color: rgb(211,253,254);
}
</style>

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 

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

Back
Top