Re: Unterschiedliche Bereiche
Verfasst: 12.10.2010 07:36
Hast du auch die Änderungen am css gemacht, und vor allem auch den Theme Cache geleert? Hast du mal einen LInk zur Seite?
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
styles\prosilver\theme\colours.css<!-- IF forumrow.S_IS_CAT or forumrow.S_FIRST_ROW or forumrow.S_NO_CAT -->
<div class="forabg">
<!-- IF forumrow.FORUM_ID == 3 --> coloured<!-- ENDIF -->
<!-- IF forumrow.FORUM_ID == 5 --> colourblue<!-- ENDIF -->
<!-- IF forumrow.FORUM_ID == 4 --> colouryellow<!-- ENDIF -->
">
Code: Alles auswählen
.forabg {
background-color: #0076b1;
background-image: url("{T_THEME_PATH}/images/bg_list.gif");
}
.coloured {
background-color: #b17600;/*background-colour, its displayed when the image is to short. the best is to take thecolour of the last Pixel-row of the bg-image*/
background-image: url("{T_THEME_PATH}/images/bg_list_coloured.gif");/*special-bg-image*/
}
.coloured ul.topiclist li.header dd, .coloured ul.topiclist li.header dt, .coloured ul.topiclist li.header dt a {
color: #000000;/* Font-colour of the headings for the special category*/
}
Das ist auch Quatsch.Dumdi hat geschrieben:<div class="forabg">
<!-- IF forumrow.FORUM_ID == 3 --> coloured<!-- ENDIF -->
Code: Alles auswählen
<div class="forabg<!-- IF forumrow.FORUM_ID == 3 --> coloured<!-- ELSEIF forumrow.FORUM_ID == 5 --> colourblue<!-- ELSEIF forumrow.FORUM_ID == 4 --> colouryellow<!-- ENDIF -->">
Code: Alles auswählen
<div class="forabg<!-- IF forumrow.FORUM_ID == 3 --> coloured<!-- ELSEIF forumrow.FORUM_ID == 5 --> colourblue<!-- ELSEIF forumrow.FORUM_ID == 4 --> colouryellow<!-- ENDIF -->">
Code: Alles auswählen
<!-- IF forumrow.S_IS_CAT or forumrow.S_FIRST_ROW or forumrow.S_NO_CAT -->
Code: Alles auswählen
.colourblue {
background-color: xxxxxx;
background-image:xxxxxxxxx;
}
Code: Alles auswählen
.colourblue ul.topiclist li.header dd, .colourblue ul.topiclist li.header dt, .colourblue ul.topiclist li.header dt a {
color: #xxxxxx;
}
Code: Alles auswählen
.colouryellow {
background-color: xxxxxx;
background-image:xxxxxxxxx;
}
Code: Alles auswählen
.colouryellow ul.topiclist li.header dd, .colouryellow ul.topiclist li.header dt, .colouryellow ul.topiclist li.header dt a {
color: #xxxxxx;
}