do you mean mnultiple stylesheets, or .css files?
use multiple link lines; example:
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/second_style.css" type="text/css" media="screen" />
http://www.w3schools.com/TAGS/tag_link.asp
or use @import in the main stylesheet; example:
@import url("second_style.css");
@import url("../twentychild/custom.css");
http://www.w3schools.com/css/css_howto.asp
Thread Starter
webbox
(@webbox)
thank you very much alchymyth..
multiple css working in my site for your great helpful reply..
thanks a lot.