Skocz do zawartości
"Idzie nowe..." - o zmianach i nie tylko ×
Przeniesienie zakupów z IPS Marketplace / Moving bought items from IPS Marketplace ×

ROZWIĄZANY: Nieaktywne tematy pozostają nieaktywne pomimo aktywności


Macsch15

Rekomendowane odpowiedzi

Problem polega na tym że jeśli ktoś napisze jakiś nowy temat to jest ikonka :

t_read.png

a ona ma świecić :P tzn wyglądać tak

t_unread.png

Sprawdzałem nazwy ikonek , są chyba prawidłowe.

Pewnie kwestia css , mógłby ktoś mi powiedzieć od ktorej linijki zaczyna sie kod odpowiedzialny za to ? i ewentualnie wrzucić kawałek z defaultowego stylu , tam gdzie jest wszystko ok.

:P

Edytowane przez macsch15
Odnośnik do komentarza
Udostępnij na innych stronach

  • Manager

Jeśli ktoś napisze temat/post to ikona ta świeci się prawidłowo dla niego - wszak już czytał/pisał ten temat/post, tak? :P

intermedia - profesjonalne rozwiązania Invision Power Board

---

Chcesz uzyskać szybko i sprawnie pomoc? Uzupełnij wersję i adres w profilu.

Odnośnik do komentarza
Udostępnij na innych stronach

:P

Jest problem ...

To jest kod nieprawidłowy (zła nazwa ikon) ze stylu nie domyślnego:

.topic_controls {
min-height: 30px;
}

.topic_buttons li {
background: transparent url({style_images_url}/topic_button_left.png) no-repeat top left;
padding: 0;
margin: 0px 10px 10px 0px;
float: right;
}

.topic_buttons li a,
.topic_buttons li span {
	font-size: 0.9em;
	display: block;
	margin: auto 0px auto 6px;
	-moz-outline: 0;
}

.topic_buttons li span {
	padding: 8px 12px 7px 3px;
}

.topic_buttons li a {
	background: transparent url({style_images_url}/topic_button_right.png) no-repeat top right;
	padding: 7px 12px 6px 3px;
}

	.topic_buttons li a img,
	.topic_buttons li span img {
		margin: -1px 5px 1px 0;
	}

	.topic_buttons li a img.arrow { margin-right: -3px; }

.topic_buttons li:hover {
	background: transparent url({style_images_url}/topic_button_left_hover.png) no-repeat top left;
}
	.topic_buttons li:hover a {
		background: transparent url({style_images_url}/topic_button_right_hover.png) no-repeat top right;
	}	
.topic_buttons li.disabled {
	background: transparent url({style_images_url}/topic_button_left_disabled.png) no-repeat top left;
}
	.topic_buttons li.disabled span {
		background: transparent url({style_images_url}/topic_button_right_disabled.png) no-repeat top right;
		color: #8f8e8e;
	}	
.topic_buttons li.closed {
	background: transparent url({style_images_url}/topic_button_left_closed.png) no-repeat top left;
}
	.topic_buttons li.closed span,
	.topic_buttons li.closed a {
		background: transparent url({style_images_url}/topic_button_right_closed.png) no-repeat top right;
	}


ul.post_controls {
background: inherit url({style_images_url}/gradient_bg.png) repeat-x 50%;
font-size: 0.8em;
text-align: right;
padding: 6px 10px 28px 6px;
clear: both;
}

	ul.post_controls li {
		background: transparent url({style_images_url}/post_button_left.png) no-repeat top left;
		padding: 0;
		margin: 0 4px;
		float: right;
	}

		ul.post_controls li.report,
		ul.post_controls li.top,
		ul.post_controls.left li {
			float: left;
		}

	ul.post_controls a {	
		background: transparent url({style_images_url}/post_button_right.png) no-repeat top right;
		color: #FFF;
		text-decoration: none;
		padding: 6px 9px 3px 4px;
		margin-left: 4px;
		display: block;
	}

	ul.post_controls a img {
		margin-top: -2px;
	}

	ul.post_controls a:hover {
		color: #B0B0B0;
	}

	/* Selected button */
	ul.post_controls li.selected {
		background: transparent url({style_images_url}/post_button_left_selected.png) no-repeat top left;
	}

		ul.post_controls li.selected a {
			background: transparent url({style_images_url}/post_button_right_selected.png) no-repeat top right;
			color: #fff;
		}

body .topic_buttons li a:hover,
body ul.post_controls a:hover {
text-decoration: none;
}

A to jest ten sam kawałek ze stylu domyślnego

.topic_controls {
min-height: 30px;
}

.topic_buttons li {
background: transparent url({style_images_url}/topic_button_left.png) no-repeat top left;
padding: 0;
margin: 0px 10px 10px 0px;
float: right;
}

.topic_buttons li a,
.topic_buttons li span {
	font-size: 0.9em;
	display: block;
	margin: auto 0px auto 6px;
	-moz-outline: 0;
}

.topic_buttons li span {
	padding: 8px 12px 7px 3px;
}

.topic_buttons li a {
	background: transparent url({style_images_url}/topic_button_right.png) no-repeat top right;
	padding: 7px 12px 6px 3px;
}

	.topic_buttons li a img,
	.topic_buttons li span img {
		margin: -1px 5px 1px 0;
	}

	.topic_buttons li a img.arrow { margin-right: -3px; }

.topic_buttons li:hover {
	background: transparent url({style_images_url}/topic_button_left_hover.png) no-repeat top left;
}
	.topic_buttons li:hover a {
		background: transparent url({style_images_url}/topic_button_right_hover.png) no-repeat top right;
	}	
.topic_buttons li.disabled {
	background: transparent url({style_images_url}/topic_button_left_disabled.png) no-repeat top left;
}
	.topic_buttons li.disabled span {
		background: transparent url({style_images_url}/topic_button_right_disabled.png) no-repeat top right;
		color: #8f8e8e;
	}	
.topic_buttons li.closed {
	background: transparent url({style_images_url}/topic_button_left_closed.png) no-repeat top left;
}
	.topic_buttons li.closed span,
	.topic_buttons li.closed a {
		background: transparent url({style_images_url}/topic_button_right_closed.png) no-repeat top right;
	}

ul.post_controls {
background-image: url({style_images_url}/gradient_bg.png);
background-repeat: repeat-x;
background-position: 50%;
font-size: 0.8em;
text-align: right;
padding: 6px 10px 28px 6px;
clear: both;
}

	ul.post_controls li {
		background: transparent url({style_images_url}/post_button_left.png) no-repeat top left;
		padding: 0;
		margin: 0 4px;
		float: right;
	}

		ul.post_controls li.report,
		ul.post_controls li.top,
		ul.post_controls.left li {
			float: left;
		}

	ul.post_controls a {	
		background: transparent url({style_images_url}/post_button_right.png) no-repeat top right;
		color: #1d3652;
		text-decoration: none;
		padding: 6px 9px 3px 4px;
		margin-left: 4px;
		display: block;
	}

	ul.post_controls a img {
		margin-top: -2px;
	}

	ul.post_controls a:hover {
		color: #3d70a3;
	}

	/* Selected button */
	ul.post_controls li.selected {
		background: transparent url({style_images_url}/post_button_left_selected.png) no-repeat top left;
	}

		ul.post_controls li.selected a {
			background: transparent url({style_images_url}/post_button_right_selected.png) no-repeat top right;
			color: #fff;
		}

body .topic_buttons li a:hover,
body ul.post_controls a:hover {
text-decoration: none;
}

emmm ... jak widać coś nie teges , wiem ? nie , lol ? wtf ? omg ...

Odnośnik do komentarza
Udostępnij na innych stronach

  • Manager

Inaczej: po co Ci to wiedzieć? :P

One są w postaci makr :P zastąpień. Menu Zarządzaj zmianami w rozwijanym menu skina.

intermedia - profesjonalne rozwiązania Invision Power Board

---

Chcesz uzyskać szybko i sprawnie pomoc? Uzupełnij wersję i adres w profilu.

Odnośnik do komentarza
Udostępnij na innych stronach

  • Manager

Problem ROZWIĄZANY. Jeśli są jakiekolwiek wątpliwości, pytania proszę o założenie nowego tematu.

Wszelkie uzasadnione reklamacje/pretensje/sugestie/rady przyjmuje ekipa forum.

intermedia - profesjonalne rozwiązania Invision Power Board

---

Chcesz uzyskać szybko i sprawnie pomoc? Uzupełnij wersję i adres w profilu.

Odnośnik do komentarza
Udostępnij na innych stronach

Gość
Ten temat został zamknięty. Brak możliwości dodania odpowiedzi.
  • Ostatnio przeglądający   0 użytkowników

    • Brak zarejestrowanych użytkowników przeglądających tę stronę.
×
×
  • Dodaj nową pozycję...

Powiadomienie o plikach cookie

Umieściliśmy na Twoim urządzeniu pliki cookie, aby pomóc Ci usprawnić przeglądanie strony. Możesz dostosować ustawienia plików cookie, w przeciwnym wypadku zakładamy, że wyrażasz na to zgodę.