Is this possible…
Posted: 30 August 2006 12:14 PM   [ Ignore ]
Newbie
Rank
Total Posts:  1
Joined  2006-08-29

Is it possible to load a style sheet without having to add the code to the HEAD…

Profile
 
 
Posted: 20 September 2006 10:44 AM   [ Ignore ]   [ # 1 ]
Newbie
Rank
Total Posts:  9
Joined  2006-07-12

there are two ways of including css:

- you put all css code in head tags.

<style type=“text/css”>

*all css code here*

</style>

- you put all css code in an external .css file and you just call it in the head tags like this:

<link rel=stylesheet href=“style.css” type=“text/css”>
<style type=“text/css” media=“screen”>@import url(style.css);</style>

but there must be something between head tags that calls the css code.

Profile
 
 
Posted: 29 October 2006 07:16 PM   [ Ignore ]   [ # 2 ]
Newbie
Rank
Total Posts:  10
Joined  2006-10-29
reg4c - 30 August 2006 12:14 PM

Is it possible to load a style sheet without having to add the code to the HEAD…

really you can place css file calling almost anyway on the page
in most cases it will work fine

Profile
 
 
   
 
 
‹‹ Positioning Preference      mht extension ››