Log in

View Full Version : CSS Newbie - very frustrated... LoL...



pit_chick
02-04-2008, 10:22 AM
:confused:
Hi... I'm extremely new to CSS but have been designing my websites in notepad for a few years now, and finally stepped up to CSS which I thought had made my life a lot easier - until I found out that my site cant be viewed with IE at all!!! All that comes up is a full page of my background colour and thats it! So my web traffic has suffered extremely, and now I am tearing my hair out:eek: trying to find a way to have IE compatible with my style sheets without having to start again from scratch... if anyone can help that would be great... the website in question is:-
www.signaturerc.com
if you want to have a look at what I'm talking about. I'm hoping that an object detection code might work but I don't really know how to include it in the css.

Thanx :confused:

jc_gmk
02-04-2008, 12:39 PM
You are missing this </style> from your head which is stopping the rest of the HTML from displaying correctly.



<!-- **** colour scheme stylesheet **** -->
<link rel="stylesheet" type="text/css" href="style/colour.css" />
<style type="text/css">
<!--
a:link { color: #0024FF; text-decoration: none }
a:visited { color: #A90111; text-decoration: none }
a:active { color: #00FF2A; text-decoration: none }
a:hover { color: #F000FF; text-decoration: underline }
td {font: 10pt verdana}
-->

MISSING CODE FROM HERE

<link rel="stylesheet" href="thumbnailviewer...

pit_chick
02-05-2008, 05:36 AM
THANKYOU!!!

I had gone over it that many times trying to work out where I had gone wrong, that I had just assumed it was a CSS issue... You have just saved all my hair!!! LMAO... and yes... I do feel rather stupid now... LoL...
And yes... my whole site is now working as it should....

Thanx again.... GREATLY appreciated!!!