How to add custom css file in theme?

I usually add this piece of code if I want to add another css file

<link rel="stylesheet" href="https://wordpress.stackexchange.com/questions/58351/<?php bloginfo("template_url'); ?>/css/my_custom_css.css" type="text/css" media="screen" />

I believe the theme makers want to retain as much as possible of the theme’s layout design. So a custom css file doesn’t hurt much. I think it’s more of a support question. With custom css file, the makers can help those who use their themes more easier. Because the original style.css is unaltered, so the theme maker can probably take a look in the custom css file.

Leave a Comment