[SOLVED] Print preview of web page flashes up

This is a discussion on "[SOLVED] Print preview of web page flashes up" within the Starting Out section. This forum, and the thread "[SOLVED] Print preview of web page flashes up are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Starting Out

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Nov 6th, 2007, 09:37
New Member
Join Date: Oct 2007
Location: Burton-Upon-Trent
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Question [SOLVED] Print preview of web page flashes up

Hi - I am new to web design and have created my first web site for a local charity preschool. I have just got the site hosted - however when I look at the site from home (using IE7) -it looks just fine - but when it is viewed by someone else from their work (using IE6) before the web page loads up it briefly flashes up the print preview version of the page - which then disappears and the web page loads up correctly.
I have written the site on Dreamweaver using links to CSS to contain the design element - it's as if it is loading the site before taking any notice of the style sheet - the code I've used to include the css is:
Code: Select all
 
<head>
<title>The Glebe Pre-School</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<style type="text/css" media="screen">@import url(basic.css);</style>
<style type="text/css" media="screen">@import url(tabs2.css);</style>
</head>
The website is http://www.glebepreschool.co.uk

Any help would be fantastic,

Thanks,
Jo
Reply With Quote

  #2 (permalink)  
Old Nov 6th, 2007, 10:45
AdRock's Avatar
SuperMember

SuperMember
Join Date: Jul 2006
Location: Devon, England
Posts: 565
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to AdRock
Re: Print preview of web page flashes up

You could try this but makes sure your paths to the css files are correct. This assumes the css files are in the same directory as the pages. You could create a folder called includes and put the css in there and add a path in the link href
Code: Select all
<head>
<title>The Glebe Pre-School</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<link href="basic.css" media="screen" rel="stylesheet" type="text/css" />

<link href="tabs2.css" media="screen" rel="stylesheet" type="text/css" /></head>
IE6 always causes problems by the way
Reply With Quote
  #3 (permalink)  
Old Nov 6th, 2007, 10:50
New Member
Join Date: Oct 2007
Location: Burton-Upon-Trent
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Print preview of web page flashes up

Thanks - have managed to sort it out by changing the code that calls the css to
Code: Select all
<link rel="stylesheet" type="text/css" href="tabs2.css" media="screen" />
 <link rel="stylesheet" type="text/css" href="basic.css" media="screen" />
pretty much as you suggested!!
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] page breaking on ie 6 and 7 lostboys Web Page Design 3 Jan 22nd, 2008 17:11
[SOLVED] getting page file name. KillerChutney PHP Forum 6 Nov 12th, 2007 16:17
[SOLVED] Page count? unitedcraig JavaScript Forum 11 Nov 7th, 2007 07:07
[SOLVED] Page doesn't validate. mcdanielnc89 Web Page Design 9 Oct 23rd, 2007 05:19
[SOLVED] new page, with page numbers saltedm8 PHP Forum 9 Oct 5th, 2007 14:45


All times are GMT. The time now is 11:26.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43