Question:

Apperantly my css file has detached itself from my template. How to apply the CSS file to the template?

by  |  earlier

0 LIKES UnLike

Apperantly my css file has detached itself from my template. How to apply the CSS file to the template?

 Tags:

   Report

2 ANSWERS


  1. Since you state you are using an external style sheet, make sure you have a link tag like the following between your page(s)' head tags:

    <link rel="stylesheet" type="text/css" href="Path to File_name.css" />

    Ron


  2. either put all your css in the head

    eg

    <head>

    <style>

    blahblhablha

    </style>

    </head>

    or make sure if your linking to it, it has a direct link

    eg http://site.com/style.css

    <link rel="stylesheet" href="http://site.com/style.css">

Question Stats

Latest activity: earlier.
This question has 2 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.