Jump to content

Search the Community

Showing results for tags 'Masking'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • W3Schools
    • General
    • Suggestions
    • Critiques
  • HTML Forums
    • HTML/XHTML
    • CSS
  • Browser Scripting
    • JavaScript
    • VBScript
  • Server Scripting
    • Web Servers
    • Version Control
    • SQL
    • ASP
    • PHP
    • .NET
    • ColdFusion
    • Java/JSP/J2EE
    • CGI
  • XML Forums
    • XML
    • XSLT/XSL-FO
    • Schema
    • Web Services
  • Multimedia
    • Multimedia
    • FLASH

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Languages

Found 2 results

  1. 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.
  2. 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...