Hi All, I was hoping to use 2 different css files in wordpress: I have created both css files and uploaded. <style type="text/css" media="screen"> <!-- @import url( <?php bloginfo('stylesheet_url'); ?> ); --> </style> Code (markup): Page is currently pulling css from the above code but I was wanting the code to be pulled from css2? What should I change in the above code to pull css data from css2?
The default is style.css right? And you have the below line to apply that default stylesheet <link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_url'); ?>" /> So in similar fashion, you add this line and correct path to your additional stylesheet <link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('template_url'); ?>/cssfolder/morestyle.css" /> Make sure to give correct path in place of cssfolder/morestyle.css Notice the difference between stylesheet_url and template_url.
As Markupdude said, just declare it in the head and providing you don't have a clash of any ID's or Div's you will be fine.