Jump to content

Chazer27

Member
  • Posts

    7
  • Joined

  • Last visited

Everything posted by Chazer27

  1. Yes i check all what you have asked and it all looks ok to me, the css file matches whats it the HTML file and both are in the same folder........im stumped now and not sure where ive made an error.......Thanks for your toime with this i might start over again and see if i can get it...... Carl
  2. Hi Andrea No it doesnt look like that ill attach what i have and you can see what its like: Thanks Again CarlpracticeHTML.htm
  3. Hi Andrea Thanks for taking the time to look throught this and give me the corrections i have changed it to the below as you have advised and i still cant amend the actual page: still wont change for me :-( am i still missing soemthing? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>First CSS Tutorial</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link href="myCSS1.css; rel="stylesheet" type="text/css"> </head> <body> <div id="centerDoc"> <h1>The Main Heading</h1> <p> Go to the Web Designer's Killer Handbook home page and grab the practice HTML page that we will used as the starting template for this tutorial. You can find it under the heading: 'To create the practice HTML page do the following:'. Follow the instructions there and create your basic HTML page and do it now! </p> </div> <div id="navigation"> <h2>The Main navigation</h2> <ul> <li><a href="cssTutorialPage1.php">Page One</a></li> <li><a href="cssTutorialPage2.php">Page Two</a></li> </ul> </div> </body> </html>
  4. I have been using the ones on here for the last few days and trying to make sense of it so far so good as you can see from my other post i stuck on the CSS file linked to the HTML and cant seem to change it....what would you recommend for me to do, it is an area in which id like to look for employment so i thought a class based course with something at the end would improve my chances they have an advanced one which i was going to do after that one but any help or advice you could give me would be very welcome. Cheers Carl
  5. Hi Andrea Thanks for the reply im trying to change it in ths CSS file, i was trying a few different changes i was changing the font weight from bold to normal in all areas where it had bold and stiil all text came up bold, i changed the colours to #000000 and the margins i tried changing these in id's for navigation & centerdoc but cant seem to get anything to change? As i said im new to this and i was just following the tutorials just trying to get familar with the basics. Thanks again carl
  6. Hi All Im going to start this course in Web Design in October i was wondering if you guys could take a look and advise if it looks ok and if it covers all the basic or is there anything else i should be looking to be added to any course?? I work so part-time courses are my only option. http://www.ibat.ie/courses/computing-and-it/web-design-courses-dublin-web-design-dublin.html Thanks in advance for your help. Carl
  7. Hi All I'm very new to this and just starting out so sorry if this is a stupid question but im having problems with the css code when i change the font weight or colour in the css file it doesnt change anything in the actual page. can you advise where im going wrong, it is part of the how-to-build-website.com tutorial below is what i have: <DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>First CSS Tutorial</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link href="myCSS.css" rel="stylesheet" type="text/css"> </head> <body> <div id="centerDoc"> <h1>The Main Heading</h1> <p> Go to the Web Designer's Killer Handbook home page and grab the practice HTML page that we will used as the starting template for this tutorial. You can find it under the heading: 'To create the practice HTML page do the following:'. Follow the instructions there and create your basic HTML page and do it now! </p> </div> <div id="navigation"> <h2>The Main navigation</h2> <ul> <li><a href="cssTutorialPage1.php">Page One</a></li> <li><a href="cssTutorialPage2.php">Page Two</a></li> </ul> </body> </html> and here is the css file that is linked to it: /* Generic Selectors */ body { font-family: Georgia, "Times New Roman", Times, serif; font-size: 14px; color: #333333; background-color: #F9F9F9; } p { width: 80%; } li { list-style-type: none; line-height: 150%; list-style-image: url(../images/arrowSmall.gif); } h1 { font-family: Georgia, "Times New Roman", Times, serif; font-size: 18px; font-weight: normal; color: #000000; } h2 { font-family: Georgia, "Times New Roman", Times, serif; font-size: 16px; font-weight: normal; color: #000000; border-bottom: 1px solid #C6EC8C; } /**************** Pseudo classes ****************/ a:link { color: #00CC00; text-decoration: underline; font-weight: normal; } li a:link { color: #00CC00; text-decoration: none; font-weight: normal; } a:visited { color: #00CC00; text-decoration: underline; font-weight: normal; } li a:visited { color: #00CC00; text-decoration: none; font-weight: normal; } a:hover { color: rgb(0, 96, 255); padding-bottom: 5px; font-weight: normal; text-decoration: underline; } li a:hover { display: block; color: rgb(0, 96, 255); padding-bottom: 5px; font-weight: normal; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #C6EC8C; } a:active { color: rgb(255, 0, 102); font-weight: normal; } /************************* ID's *************************/ #navigation { position: absolute; z-index: 10; width: 210px; height: 600px; margin: 0; border-right: 1px solid #C6EC8C; font-weight: normal; } #centerDoc { position: absolute; z-index: 15; padding: 0 0 20px 20px; /*top right bottom left*/ margin-top: 50px; margin-left: 235px; } Its prob something really basic thats im doing wrong of have taking down wrong but any help would be really welcome. Thanks Carl
×
×
  • Create New...