Jump to content

Roasted85

Members
  • Posts

    7
  • Joined

  • Last visited

About Roasted85

  • Birthday 11/12/1985

Profile Information

  • Location
    Portsmouth, UK

Roasted85's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Is this about right? http://kb.siteground.com/article/Simple_domain_name_masking.html
  2. I recently posted this: http://w3schools.invisionzone.com/index.php?showtopic=44208 in CSS styles. I'm having trouble with my site displaying correctly in IE8 & Above. I have discovered that the reason my site wont load correctly in IE8+ is to do with the web forwarding and masking (set up by lcn.com) forcing my site to display in IE7 mode - and thus my CSS won't load. It used to be that if you visit my site at: www.davemooreboxedart.co.uk you get masked & forwarded to: www.personalised-cupcakes.co.uk/davemoore/index2.html (I have since changed this to a simple re-direction and my site displays correctly! Hurrah!) I would now like to set up my own address bar masking, but have no idea how to do it.Have searched the net but not found any simple way to do it. Any help ? Or can anyone point me in the right direction ? Thanks.R.
  3. Roasted85

    CSS IE9 issues

    IF LCN (the peeps I get my domain names from) can't offer a solution. Does anyone know of a good work around to over-ride it?
  4. Roasted85

    CSS IE9 issues

    oh hang on! that's imposed by the web forwarding from lcn.com !
  5. Roasted85

    CSS IE9 issues

    oh beg your pardon, that should have updated to the above posted code before you visited it!
  6. Roasted85

    CSS IE9 issues

    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.
×
×
  • Create New...