Pagina 1 van 1

Unread bolt topic

Geplaatst: 11 jun 2013, 19:51
door -Nathan-
Ik wil graag als ik een bepaalde topic nog niet gelezen heb dat hij dikgedrukt/bolt is.

Ik heb deze topic wel gelezen maar ik heb geen viewforum_body.html..

Kan iemand me helpen?

En nog even snel een vraagje: Ik ga mijn achtergrond veranderen naar een grijze achtergrond met een gunz gloed er over. (Gunz is een spel dat ik leuk vind muuu) maar nu verschilt elke computers' resolutie.. En dat is wel het handige van een loopende achtergrond; hij kan bij elke resolutie omdat hij zich aanpast. Nu is mijn vraag; is er een manier voor mij om de gewilde achtergrond te krijgen en dat hij toch voor iedereen mijn forum er netjes uit ziet? Zo ja? Hoe?

Bedankt alvast,

-Nathan-.

Re: Unread bolt topic

Geplaatst: 11 jun 2013, 21:07
door David
-Nathan- schreef:Ik wil graag als ik een bepaalde topic nog niet gelezen heb dat hij dikgedrukt/bolt is.

Ik heb deze topic wel gelezen maar ik heb geen viewforum_body.html..

Kan iemand me helpen?
Je maakt gebruik van de stijl IDLaunch_Black, deze stijl leent het merendeel van zijn bestanden van Prosilver. Alle bestanden die je niet in IDLaunch_Black hebt staan moet je wijzigingen in Prosilver.

Je wijzigt dus het bestand: styles/prosilver/template/viewforum_body.html en dan werkt het ook op IDLaunch_Black.

Re: Unread bolt topic

Geplaatst: 11 jun 2013, 22:05
door -Nathan-
David schreef: Je wijzigt dus het bestand: styles/prosilver/template/viewforum_body.html en dan werkt het ook op IDLaunch_Black.
Werkt, maar nu is de titel van een unread-thread: style="font-weight:bold">DE NAAM VAN DE TOPIC/THREAD.

Waarschijnlijk verkeerde code ofzo? :P
Wijziging: Overzichtelijker.

Re: Unread bolt topic

Geplaatst: 12 jun 2013, 00:29
door Theriddler
Zoek:

Code: Selecteer alles

<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle"<!-- IF S_ENABLE_COLOR_UNREAD_LINKS and topicrow.S_UNREAD_TOPIC --> style="color: #{COLOR_UNREAD_LINKS};"<!-- ENDIF -->><!-- IF topicrow.S_UNREAD_TOPIC -->  style="font-weight:bold"<!-- ENDIF -->>{topicrow.TOPIC_TITLE}</a>
Vervang met:

Code: Selecteer alles

<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle"<!-- IF S_ENABLE_COLOR_UNREAD_LINKS and topicrow.S_UNREAD_TOPIC --> style="color: #{COLOR_UNREAD_LINKS};<!-- IF topicrow.S_UNREAD_TOPIC -->  font-weight:bold;<!-- ENDIF --><!-- ENDIF -->">{topicrow.TOPIC_TITLE}</a>

Re: Unread bolt topic

Geplaatst: 12 jun 2013, 15:32
door -Nathan-
Theriddler schreef:Zoek:

Code: Selecteer alles

<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle"<!-- IF S_ENABLE_COLOR_UNREAD_LINKS and topicrow.S_UNREAD_TOPIC --> style="color: #{COLOR_UNREAD_LINKS};"<!-- ENDIF -->><!-- IF topicrow.S_UNREAD_TOPIC -->  style="font-weight:bold"<!-- ENDIF -->>{topicrow.TOPIC_TITLE}</a>
Vervang met:

Code: Selecteer alles

<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle"<!-- IF S_ENABLE_COLOR_UNREAD_LINKS and topicrow.S_UNREAD_TOPIC --> style="color: #{COLOR_UNREAD_LINKS};<!-- IF topicrow.S_UNREAD_TOPIC -->  font-weight:bold;<!-- ENDIF --><!-- ENDIF -->">{topicrow.TOPIC_TITLE}</a>
Volgens mij zijn ze altijd al bold, nu wil ik dus dat als het gelezen is >>> niet meer bold.

Hier zie je:

Afbeelding

Re: Unread bolt topic

Geplaatst: 13 jun 2013, 08:15
door Theriddler
Probeer het volgende eens:

Code: Selecteer alles

<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle"<!-- IF S_ENABLE_COLOR_UNREAD_LINKS and topicrow.S_UNREAD_TOPIC --> style="color: #{COLOR_UNREAD_LINKS};<!-- ENDIF --><!-- IF not topicrow.S_UNREAD_TOPIC --> style="font-weight:normal;<!-- ENDIF -->">{topicrow.TOPIC_TITLE}</a>

Re: Unread bolt topic

Geplaatst: 14 jun 2013, 00:01
door -Nathan-
Theriddler schreef:Probeer het volgende eens:

Code: Selecteer alles

<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle"<!-- IF S_ENABLE_COLOR_UNREAD_LINKS and topicrow.S_UNREAD_TOPIC --> style="color: #{COLOR_UNREAD_LINKS};<!-- ENDIF --><!-- IF not topicrow.S_UNREAD_TOPIC --> style="font-weight:normal;<!-- ENDIF -->">{topicrow.TOPIC_TITLE}</a>

Werkt ook niet, kan je geen code geven waarmee het dus word:

Als het gelezen is > Niet meer bold.

Want volgens mij zijn ze sowieso bold. Ookal heb ik hem gelezen.

Zie maar: http://gunzforum.tk/viewforum.php?f=11

Re: Unread bolt topic

Geplaatst: 14 jun 2013, 07:27
door Ger
Theriddler schreef:Probeer het volgende eens:

Code: Selecteer alles

<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle"<!-- IF S_ENABLE_COLOR_UNREAD_LINKS and topicrow.S_UNREAD_TOPIC --> style="color: #{COLOR_UNREAD_LINKS};<!-- ENDIF --><!-- IF not topicrow.S_UNREAD_TOPIC --> style="font-weight:normal;<!-- ENDIF -->">{topicrow.TOPIC_TITLE}</a>
Die syntax klopt niet. Dit zou wel moeten werken:

Code: Selecteer alles

<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle"<!-- IF S_ENABLE_COLOR_UNREAD_LINKS and topicrow.S_UNREAD_TOPIC --> style="color: #{COLOR_UNREAD_LINKS};<!-- ENDIF --><!-- IF not topicrow.S_UNREAD_TOPIC --> font-weight:normal;<!-- ENDIF -->">{topicrow.TOPIC_TITLE}</a>

Re: Unread bolt topic

Geplaatst: 14 jun 2013, 11:56
door -Nathan-
Ger schreef:
Theriddler schreef:Probeer het volgende eens:

Code: Selecteer alles

<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle"<!-- IF S_ENABLE_COLOR_UNREAD_LINKS and topicrow.S_UNREAD_TOPIC --> style="color: #{COLOR_UNREAD_LINKS};<!-- ENDIF --><!-- IF not topicrow.S_UNREAD_TOPIC --> style="font-weight:normal;<!-- ENDIF -->">{topicrow.TOPIC_TITLE}</a>
Die syntax klopt niet. Dit zou wel moeten werken:

Code: Selecteer alles

<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle"<!-- IF S_ENABLE_COLOR_UNREAD_LINKS and topicrow.S_UNREAD_TOPIC --> style="color: #{COLOR_UNREAD_LINKS};<!-- ENDIF --><!-- IF not topicrow.S_UNREAD_TOPIC --> font-weight:normal;<!-- ENDIF -->">{topicrow.TOPIC_TITLE}</a>
Werkt ook niet.. Log in met:

Code: Selecteer alles

Gebruikersnaam: test
Wachtwoord: testtest
En zie mijn post die ik heb geplaatst. Zodat hij ongelezen voor jullie is.

Re: Unread bolt topic

Geplaatst: 14 jun 2013, 22:40
door Theriddler
nog maar eens proberen

Code: Selecteer alles

<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle"<!-- IF S_ENABLE_COLOR_UNREAD_LINKS and topicrow.S_UNREAD_TOPIC --> style="color: #{COLOR_UNREAD_LINKS}; <!-- IF not topicrow.S_UNREAD_TOPIC --> font-weight: normal !important;<!-- ENDIF --><!-- ENDIF -->">{topicrow.TOPIC_TITLE}</a>