Seite 1 von 1

[3.3] Icons vor den Foren ändern

Verfasst: 18.05.2021 20:21
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 ;-)

Re: [3.3] Icons vor den Foren ändern

Verfasst: 18.05.2021 20:54
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 */

Re: [3.3] Icons vor den Foren ändern

Verfasst: 20.05.2021 19:34
von ww_Michael
ok danke erstal ich werde schauen ;-)

Re: [3.3] Icons vor den Foren ändern

Verfasst: 20.05.2021 19:40
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"); }