Jump to content

Recommended Posts

Hello! Please bare with me as I don't know what i'm doing most of the time!Slowly learning to create sites using Dreamweaver and creating in HTML with CSS. if you visit My site at: http://www.davemooreboxedart.co.uk you get masked and forwarded to the actual destination which is hosted at: www.personalised-cupcakes.co.uk/davemoore/index.html (<--piggybacking n what not) When doing this in Safari, Firefox and Chrome the site displays as I would like - With border-radius' and colours and fonts as it should. When doing so in Internet Explorer (i'm using 9) the CSS doesn't load correctly. I think this has something to do with the web forwarding and masking - as if you follow the direct link using IE9 all is as it should be!I've tried linking to the CSS directly and also including it within my code. Can anyone help me pleeeease! R. My code: <!DOCTYPE html><head><meta charset="UTF-8" /><title>www.davemooreboxedart.co.uk</title><link rel="stylesheet" type="text/css" href="moore.css"/><!--[if gte IE 7]<link rel="stylesheet" type="text/css" href="iespecific.css" /><![endif]--></head> <body class="oneColElsCtrHdr"> <div id="container"> <div id="header"> <h1 align="right"><a href="index2.html" target="_self"><img src="Images/header.png" width="70%" border="0" /></a></h1> </div> <div id="linksbar"><a href="index2.html" target="_self">Home</a> | <a href="aboutme.html" target="_self">About Me</a> | <a href="portfolio.html" target="_self">Portfolio</a> | <a href="exhibitions.html" target="_self">Exhibitions</a> | <a href="contact.html" target="_self">Contact</a></div> <div id="mainContent"> <h1>Welcome to my website</h1> <p> Please visit my portfolio page for some examples of my work. </p> </div> <div id="footer"> <p align="center">w: <a href="http://www.davemooreboxedart.co.uk" target="_blank">www.davemooreboxedart.co.uk</a> e:</p> <p align="center"><a href="index2.html" target="_self">Home</a> | <a href="aboutme.html" target="_self">About Me</a> | <a href="portfolio.html" target="_self">Portfolio</a> | <a href="exhibitions.html" target="_self">Exhibitions</a> | <a href="contact.html" target="_self">Contact</a></p> </div></div></body></html> ------ my CSS:- @charset "utf-8";body {font: 100% calibri;margin:0;padding:0;text-align:center;font-color:#000000;background-color:rgba(255,255,255,1);border-radius:15px;}.oneColElsCtrHdr #container {width:46em;margin:auto;text-align:left;background:transparent;border-radius:15px;}.oneColElsCtrHdr #header {padding:10px;background:transparent;margin-bottom:0px;}.oneColElsCtrHdr #header h1 {margin: 0;padding: 10px 0;background: transparent;}.oneColElsCtrHdr #linksbar {padding:15px;margin:10px;margin-top:0px;border-radius:15px; background:rgba(25,140,143,0.7);text-align:center;vertical-align:bottom;}.oneColElsCtrHdr #mainContent {padding:20px;margin:10px;border-radius:15px; background-color: rgba(163,206,116,0.6);}.oneColElsCtrHdr #footer {padding: 15px;margin: 10px;margin-top: 0px;border-radius:15px; background-color: rgba(25,140,143,0.7);}.oneColElsCtrHdr #footer p {margin: 0;padding: 10px 0;}.border-radius { border-radius:15px; -moz-border-radius:15px; -webkit-border-radius:15px;}.transparent { filter:alpha(opacity=60); -moz-opacity: 0.6; opacity: 0.6;}a:link {color: #000000;text-decoration: none;}a:visited {color: #000000;text-decoration: none;}a:hover {color: rgba(139,177,6,0.8);} --- R.

post-97739-0-86297400-1341476764_thumb.png

post-97739-0-99408300-1341476766_thumb.png

Link to comment
Share on other sites

This is your problem <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd" /><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head><title></title><meta http-equiv="Content-type" content="text/html; charset=utf-8" /><meta http-equiv="X-UA-Compatible" content="IE=7" /></head><frameset rows="100%,*" cols="100%" frameborder="0" border="0" framespacing="0"> <frame src="http://www.personalised-cupcakes.co.uk/davemoore/index.html" scrolling="auto" /></frameset><noframes><body bgcolor="#FFFFFF">Redirection to <a href="http://www.personalised-cupcakes.co.uk/davemoore/index.html">here</a></body></noframes></html>below IE9 versions do not understand CSS3 styling, this line in red tells IE9 browser it to work to IE7 standards.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...