Viewing 2 replies - 1 through 2 (of 2 total)
  • Michael

    (@alchymyth)

    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.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘how insert multiple css in my wp site’ is closed to new replies.