user319854
user319854

Reputation: 4126

css, disabled css files

how disables CSS file?

I use CMS and in header load style.css file. O don't have permission change index.php file, so i must change only in my file.

Thanks

Upvotes: 0

Views: 215

Answers (3)

Wouter Dorgelo
Wouter Dorgelo

Reputation: 11998

Just replace style.css with an empty style.css file.

Upvotes: 2

Rebecca Chernoff
Rebecca Chernoff

Reputation: 22635

Are you saying you don't want to use the stylesheet but can't remove it from the html markup? If so, just delete everything in the file. You can comment it all out, but if you're not using it, save the bandwidth and just erase the content.

Upvotes: 2

Jurian Sluiman
Jurian Sluiman

Reputation: 13558

Comment the whole css out. Start with /* and don't put the end piece in the file.

/*

// Here starts your normal css file
body {
    font-family: serif;
    ...
{
...

// Post at the end or not at all
*/

Upvotes: 2

Related Questions