Qchem 0 Report post Posted October 7, 2003 Hi all, I've some experience of webdesign (only for fun) but I've been out of the loop for a while and I'm trying to catch up with CSS and XHTML. Inspired by the page layout I've seen at http://www.saila.com/usage/layouts/ I'm considering making a few pages in this vain. Basically what I want to know is if it is possible to place the majority of the page layout information in an external stylesheet? I've tried but I was left with a blank white page. Thanks in advance Quote Share this post Link to post Share on other sites
paCkeTroUTer 0 Report post Posted October 7, 2003 within the head tags of the html page you would place the link to the seperate style sheet example: <head> <title>My page Title</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" type="text/css" href="styles/main.css" /> </head> In this example the styles sheet document(main.css) is placed in the folder called styles Jeffery Quote Share this post Link to post Share on other sites
Qchem 0 Report post Posted October 7, 2003 Thanks paCkeTroUTer, It was the xhtml that was foxing me and I'd missed the trailing / within the link tag. Quote Share this post Link to post Share on other sites