I'm building a series of pages in HTML which will essentially mimic a slide show; each page will have a very unique and complex layout.
For the sake of my own sanity, I want to have one .css control the text style and formatting, and a separate .css for each page to control the positioning of layout items (boxes of text and so on).
So in the header of the HTML page, I tried to put
where "_slideX" refers to the specific layout .css for that particular slide number.
But only the first .css is being applied. How can I load two stylesheets for the same page?
Thanks,
Johnny Geo
For the sake of my own sanity, I want to have one .css control the text style and formatting, and a separate .css for each page to control the positioning of layout items (boxes of text and so on).
So in the header of the HTML page, I tried to put
Code:
<link type="text/css" rel="stylesheet" href="style_master.css"/>
<link type="text/css" rel="stylesheet" href="style_slideX.css"/>
But only the first .css is being applied. How can I load two stylesheets for the same page?
Thanks,
Johnny Geo