Two stylesheets included. I want only one!!! Help me please!

Two stylesheets included. I want only one!!! Help me please!

by Cadu de Castro Alves -
Number of replies: 1
Hi people!

My page is including two stylesheets.

Look:

<html dir="ltr">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="http://fgvrj20.fgv.br/fgv/moodle/theme/standard/styles.php" />
<link rel="stylesheet" type="text/css" href="http://fgvrj20.fgv.br/fgv/moodle/theme/fgv/styles.php" />


I want to know how I have to do to include only one.

Sorry my bad English!

Kdu
Average of ratings: -
In reply to Cadu de Castro Alves

Re: Two stylesheets included. I want only one!!! Help me please!

by Utkarshraj Atmaram -

It's perfectly alright! Your fgv theme is overriding the standard theme. This is how Moodle Themes work. See http://docs.moodle.org/en/Theme_basics#Mixed_CSS_-_standard_layout_plus_your_own_fonts_and_colours for details.

If you want still want only one theme, make following changes in your theme's config.php file:
$THEME->standardsheets = true;
For details read the comments in the config.php file.