Hallo Leute!
Ich verwende ein CMS System wo ich eine norm CSS für alle Seiten verwende. Nun möchte ich aber für eine PHP Seite diese CSS nicht verwenden, werden aber automatisch im Header mitgegeben. Habe schon alles versucht um die Unten angeführten zu implementieren aber bis jetzt kein Erfolg.
Rufe alle Styls mit class=\"cal_head\ auf aber nichts!!
Könnt ihr mir BITTE weiterhelfen.
Danke
mfg
Fritz
Ich verwende ein CMS System wo ich eine norm CSS für alle Seiten verwende. Nun möchte ich aber für eine PHP Seite diese CSS nicht verwenden, werden aber automatisch im Header mitgegeben. Habe schon alles versucht um die Unten angeführten zu implementieren aber bis jetzt kein Erfolg.
Rufe alle Styls mit class=\"cal_head\ auf aber nichts!!
PHP:
echo "
<style type=\"text/css\">
a.cal_head
{
color: " . $head_link_color . ";
}
a.cal_head:visited
{
text-decoration: none;
}
.cal_head
{
background-color: " . $head_background_color . ";
color: " . $head_font_color . ";
font-family: " . $font_family . ";
font-size: " . $head_font_size . ";
font-weight: " . $head_font_weight . ";
font-style: " . $head_font_style . ";
}
.cal_days /*darussol*/
{
background-color: " . $days_head_background_color . ";
color: " . $days_head_font_color . ";
font-family: " . $font_family . ";
font-size: " . $days_head_font_size . ";
font-weight: " . $days_head_font_weight . ";
font-style: " . $days_head_font_style . ";
}
.cal_content
{
background-color: " . $content_background_color . ";
color: " . $content_font_color . ";
font-family: " . $font_family . ";
font-size: " . $content_font_size . ";
font-weight: " . $content_font_weight . ";
font-style: " . $content_font_style . ";
}
.cal_today
{
background-color: " . $today_background_color . ";
color: " . $today_font_color . ";
font-family: " . $font_family . ";
font-size: " . $today_font_size . ";
font-weight: " . $today_font_weight . ";
font-style: " . $today_font_style . ";
}
.cal_event
{
background-color: " . $event_background_color . ";
color: " . $event_font_color . ";
font-family: " . $font_family . ";
font-size: " . $event_font_size . ";
font-weight: " . $event_font_weight . ";
font-style: " . $event_font_style . ";
}
a.cal_event:visited, a.cal_today:visited, a.cal_content:visited, a.cal_content:visited, a.cal_days:visited
{
text-decoration: none;
}
</style>
Könnt ihr mir BITTE weiterhelfen.
Danke
mfg
Fritz