• 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

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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

    Thread Starter cyberstudios

    (@cyberstudios)

    That seems straightfoward enough, many thanks for your help.

    no problem. glad to help out. I’ve certainly received my share of help here!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Can I add a stylesheet’ is closed to new replies.