[3.3] Icons vor den Foren ändern

Alles zu Styles, Templates, Icons und Smilies für phpBB 3.3, sowie allgemeine Designfragen zur Integration von phpBB in bestehende Websites.
Forumsregeln
Bei Style spezifischen Fragen ist der Stylename und die Downloadquelle des Styles erforderlich sowie die URL vom betroffenen Forum.
Antworten
ww_Michael
Mitglied
Beiträge: 51
Registriert: 07.03.2021 13:24

[3.3] Icons vor den Foren ändern

Beitrag von ww_Michael »

Ich hab da mal ne Frage und zwar die Icons vor den Foren (Neue Posts / Gelesen / verschoben usw.)
sind im POrginal als PNG gespeichert, wie kann man das z.B auf jpg ändern oder wo. Ich such mir einen Wolf ;-)
Lehrling
Ehemaliges Teammitglied
Beiträge: 3833
Registriert: 15.01.2012 20:00
Kontaktdaten:

Re: [3.3] Icons vor den Foren ändern

Beitrag von Lehrling »

Im Original sind sie als gifs gespeichert. Um das zu ändern, musst du das colours.css ändern. Suche dort nach /* Forum icons & Topic icons */
ww_Michael
Mitglied
Beiträge: 51
Registriert: 07.03.2021 13:24

Re: [3.3] Icons vor den Foren ändern

Beitrag von ww_Michael »

ok danke erstal ich werde schauen ;-)
Benutzeravatar
Joyce&Luna
Mitglied
Beiträge: 2470
Registriert: 24.11.2013 18:14
Wohnort: NRW
Kontaktdaten:

Re: [3.3] Icons vor den Foren ändern

Beitrag von Joyce&Luna »

Hi

Suche in colours.css

Dieses

Code: Alles auswählen

/* Forum icons & Topic icons */
.global_read						{ background-image: url("./images/announce_read.gif"); }
.global_read_mine					{ background-image: url("./images/announce_read_mine.gif"); }
.global_read_locked					{ background-image: url("./images/announce_read_locked.gif"); }
.global_read_locked_mine			{ background-image: url("./images/announce_read_locked_mine.gif"); }
.global_unread						{ background-image: url("./images/announce_unread.gif"); }
.global_unread_mine					{ background-image: url("./images/announce_unread_mine.gif"); }
.global_unread_locked				{ background-image: url("./images/announce_unread_locked.gif"); }
.global_unread_locked_mine			{ background-image: url("./images/announce_unread_locked_mine.gif"); }

.announce_read						{ background-image: url("./images/announce_read.gif"); }
.announce_read_mine					{ background-image: url("./images/announce_read_mine.gif"); }
.announce_read_locked				{ background-image: url("./images/announce_read_locked.gif"); }
.announce_read_locked_mine			{ background-image: url("./images/announce_read_locked_mine.gif"); }
.announce_unread					{ background-image: url("./images/announce_unread.gif"); }
.announce_unread_mine				{ background-image: url("./images/announce_unread_mine.gif"); }
.announce_unread_locked				{ background-image: url("./images/announce_unread_locked.gif"); }
.announce_unread_locked_mine		{ background-image: url("./images/announce_unread_locked_mine.gif"); }

.forum_link							{ background-image: url("./images/forum_link.gif"); }
.forum_read							{ background-image: url("./images/forum_read.gif"); }
.forum_read_locked					{ background-image: url("./images/forum_read_locked.gif"); }
.forum_read_subforum				{ background-image: url("./images/forum_read_subforum.gif"); }
.forum_unread						{ background-image: url("./images/forum_unread.gif"); }
.forum_unread_locked				{ background-image: url("./images/forum_unread_locked.gif"); }
.forum_unread_subforum				{ background-image: url("./images/forum_unread_subforum.gif"); }

.sticky_read						{ background-image: url("./images/sticky_read.gif"); }
.sticky_read_mine					{ background-image: url("./images/sticky_read_mine.gif"); }
.sticky_read_locked					{ background-image: url("./images/sticky_read_locked.gif"); }
.sticky_read_locked_mine			{ background-image: url("./images/sticky_read_locked_mine.gif"); }
.sticky_unread						{ background-image: url("./images/sticky_unread.gif"); }
.sticky_unread_mine					{ background-image: url("./images/sticky_unread_mine.gif"); }
.sticky_unread_locked				{ background-image: url("./images/sticky_unread_locked.gif"); }
.sticky_unread_locked_mine			{ background-image: url("./images/sticky_unread_locked_mine.gif"); }

.topic_moved						{ background-image: url("./images/topic_moved.gif"); }
.pm_read,
.topic_read							{ background-image: url("./images/topic_read.gif"); }
.topic_read_mine					{ background-image: url("./images/topic_read_mine.gif"); }
.topic_read_hot						{ background-image: url("./images/topic_read_hot.gif"); }
.topic_read_hot_mine				{ background-image: url("./images/topic_read_hot_mine.gif"); }
.topic_read_locked					{ background-image: url("./images/topic_read_locked.gif"); }
.topic_read_locked_mine				{ background-image: url("./images/topic_read_locked_mine.gif"); }
.pm_unread,
.topic_unread						{ background-image: url("./images/topic_unread.gif"); }
.topic_unread_mine					{ background-image: url("./images/topic_unread_mine.gif"); }
.topic_unread_hot					{ background-image: url("./images/topic_unread_hot.gif"); }
.topic_unread_hot_mine				{ background-image: url("./images/topic_unread_hot_mine.gif"); }
.topic_unread_locked				{ background-image: url("./images/topic_unread_locked.gif"); }
.topic_unread_locked_mine			{ background-image: url("./images/topic_unread_locked_mine.gif"); }
ändere es in diesem.

Code: Alles auswählen

/* Forum icons & Topic icons */
.global_read						{ background-image: url("./images/announce_read.jpg"); }
.global_read_mine					{ background-image: url("./images/announce_read_mine.jpg"); }
.global_read_locked					{ background-image: url("./images/announce_read_locked.jpg"); }
.global_read_locked_mine			{ background-image: url("./images/announce_read_locked_mine.jpg"); }
.global_unread						{ background-image: url("./images/announce_unread.jpg"); }
.global_unread_mine					{ background-image: url("./images/announce_unread_mine.jpg"); }
.global_unread_locked				{ background-image: url("./images/announce_unread_locked.jpg"); }
.global_unread_locked_mine			{ background-image: url("./images/announce_unread_locked_mine.jpg"); }

.announce_read						{ background-image: url("./images/announce_read.jpg"); }
.announce_read_mine					{ background-image: url("./images/announce_read_mine.jpg"); }
.announce_read_locked				{ background-image: url("./images/announce_read_locked.jpg"); }
.announce_read_locked_mine			{ background-image: url("./images/announce_read_locked_mine.jpg"); }
.announce_unread					{ background-image: url("./images/announce_unread.jpg"); }
.announce_unread_mine				{ background-image: url("./images/announce_unread_mine.jpg"); }
.announce_unread_locked				{ background-image: url("./images/announce_unread_locked.jpg"); }
.announce_unread_locked_mine		{ background-image: url("./images/announce_unread_locked_mine.jpg"); }

.forum_link							{ background-image: url("./images/forum_link.jpg"); }
.forum_read							{ background-image: url("./images/forum_read.jpg"); }
.forum_read_locked					{ background-image: url("./images/forum_read_locked.jpg"); }
.forum_read_subforum				{ background-image: url("./images/forum_read_subforum.jpg"); }
.forum_unread						{ background-image: url("./images/forum_unread.jpg"); }
.forum_unread_locked				{ background-image: url("./images/forum_unread_locked.jpg"); }
.forum_unread_subforum				{ background-image: url("./images/forum_unread_subforum.jpg"); }

.sticky_read						{ background-image: url("./images/sticky_read.jpg"); }
.sticky_read_mine					{ background-image: url("./images/sticky_read_mine.jpg"); }
.sticky_read_locked					{ background-image: url("./images/sticky_read_locked.jpg"); }
.sticky_read_locked_mine			{ background-image: url("./images/sticky_read_locked_mine.jpg"); }
.sticky_unread						{ background-image: url("./images/sticky_unread.jpg"); }
.sticky_unread_mine					{ background-image: url("./images/sticky_unread_mine.jpg"); }
.sticky_unread_locked				{ background-image: url("./images/sticky_unread_locked.jpg"); }
.sticky_unread_locked_mine			{ background-image: url("./images/sticky_unread_locked_mine.jpg"); }

.topic_moved						{ background-image: url("./images/topic_moved.jpg"); }
.pm_read,
.topic_read							{ background-image: url("./images/topic_read.jpg"); }
.topic_read_mine					{ background-image: url("./images/topic_read_mine.jpg"); }
.topic_read_hot						{ background-image: url("./images/topic_read_hot.jpg"); }
.topic_read_hot_mine				{ background-image: url("./images/topic_read_hot_mine.jpg"); }
.topic_read_locked					{ background-image: url("./images/topic_read_locked.jpg"); }
.topic_read_locked_mine				{ background-image: url("./images/topic_read_locked_mine.jpg"); }
.pm_unread,
.topic_unread						{ background-image: url("./images/topic_unread.jpg"); }
.topic_unread_mine					{ background-image: url("./images/topic_unread_mine.jpg"); }
.topic_unread_hot					{ background-image: url("./images/topic_unread_hot.jpg"); }
.topic_unread_hot_mine				{ background-image: url("./images/topic_unread_hot_mine.jpg"); }
.topic_unread_locked				{ background-image: url("./images/topic_unread_locked.jpg"); }
.topic_unread_locked_mine			{ background-image: url("./images/topic_unread_locked_mine.jpg"); }
phpBB-Style-Design.de

Keine Antwort ist die eindeutigste Antwort, die man kriegen kann.
Bitte stellt die Fragen im Forum und nicht per PN. Danke!
Antworten

Zurück zu „Styles, Templates und Grafiken“