Forums

how insert multiple css in my wp site (3 posts)

  1. webbox
    Member
    Posted 1 year ago #

    how insert multiple css in my wp site?

  2. alchymyth
    The Sweeper
    Posted 1 year ago #

    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

  3. webbox
    Member
    Posted 1 year ago #

    thank you very much alchymyth..
    multiple css working in my site for your great helpful reply..
    thanks a lot.

Topic Closed

This topic has been closed to new replies.

About this Topic