I think a stylesheet can’t be declared in BODY tag elements of html.
Ok, another question on styleesheet, lets say I have declared two stylesheets in Header.php.
<link rel=”stylesheet” href=”style.css” type=”text/css” media=”screen” />
<link rel=”stylesheet” href=”newstyle.css” type=”text/css” media=”screen” />
actually, three questions on this :
- which one is taken as default stylesheet to apply for the homepage?
- is there anyway i can tell it to apply a single style from anyone of them?
- and I’ve created a custom page template(say home.php), for that specific page template I want to choose one style from both.
How?
Any help is greatly appreciated.