I'm used to using external css stylesheets in my web design business. Can I add a manually upload a stylesheet and link it to my blog pages to style specific elements?
Thanks!
Paul
I'm used to using external css stylesheets in my web design business. Can I add a manually upload a stylesheet and link it to my blog pages to style specific elements?
Thanks!
Paul
Certainly you can add your own style sheet. I typically just add my rules to the style.css file already linked in header.php, but if you want to add another style sheet, use this method in your header.php file:
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/nameofstylesheet.css" type="text/css" media="screen" />
and put your style sheet into the theme's directory.
HTH
That seems straightfoward enough, many thanks for your help.
no problem. glad to help out. I've certainly received my share of help here!
This topic has been closed to new replies.