MyBB.de Forum

Normale Version: Thema erledigt
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Seiten: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Das Temple sieht so aus

Code:
<tr class="inline_row">
<td align="center" class="{$bgcolor}{$thread_type_class}" width="2%"><span class="thread_status {$folder}" title="{$folder_label}">&nbsp;</span>{$icon}</td>
<td align="center" class="{$bgcolor}{$thread_type_class}" width="2%"></td>
<td class="{$bgcolor}{$thread_type_class}">
{$attachment_count}
<div>
<span>{$prefix} {$gotounread} {$threadsolved} {$thread['threadprefix']}<span class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}"><a href="{$thread['threadlink']}">{$thread['subject']}</a></span>{$thread['multipage']}</span>
<div class="author smalltext">{$thread['profilelink']}</div>
</div>
</td>
<td align="center" class="{$bgcolor}{$thread_type_class}"><a href="javascript:void(0)" onclick="MyBB.whoPosted({$thread['tid']}); return false;">{$thread['replies']}</a>{$unapproved_posts}</td>
<td align="center" class="{$bgcolor}{$thread_type_class}">{$thread['views']}</td>
{$rating}
<td class="{$bgcolor}{$thread_type_class}" style="white-space: nowrap; text-align: left;">
       <table border="0">
        <tr>
        <td></td>
        <td>
<span class="lastpost smalltext">{$lastpostdate}<br />
<a href="{$thread['lastpostlink']}" class="last_preview" id="ltid_{$inline_edit_tid}">{$lang->lastpost}</a>: {$lastposterlink}</span>
       </td>
       </tr>
       </table>
</td>
{$modbit}
</tr>

hab es auch mit dem default theme getestet da wird es auch so angezeigt wie oben auf dem Bild.
Das Template passt soweit. Tritt dies auch im default Theme auf ?
Ja beim Default ist es auch so

[attachment=11870]
Kannst Du deine URL zum Forum bitte posten ?
Ok Fehler gefunden in der Plugin php ist nen fehler rein gekommen Rolleyes  . Kann du mir eventuell sagen wie ich das Icon noch in dem Übersicht Plugin was hier auch benutzt wird anzeigen lassen kann. Und wenn möglich auch das auf der Index hinter Threads das erledigt icon zu sehen ist.
Schau mal hier
https://www.mybb.de/forum/thread-8783.html

Und Suchfunktion bitte verwenden ! Ist die Suche erfolglos, dann erst wieder schreiben.
Tach zusammen hätte noch mal eine Frage bezüglich Buttons.

Habe ein "Erledigt" und "Nicht Erledigt" CSS Button mit Icon und Text erstellt. Nun habe ich nen paar Probleme wo ich nicht weiter komme.

Das erste wie bekomme ich das Icon links neben den Text?

[attachment=11876]

Das zweite Problem, die Hintergrundfarbe wird nicht übernommen so wie ich das will, beim hover geht der angegebene Farbcode beim Button selber irgendwie nicht.

Und das letzte Problem durch den hover verschwindet das Icon und es wird ein Strich unter dem Text angezeigt  wenn man mit der Maus über den Button fährt.

[attachment=11877]

Kann mir da eventuell jemand weiter helfen ?


Hier mal der CSS Code den ich bisher zusammengebaut habe:

Code:
.solvedbutton {
background: linear-gradient(to bottom, #45484d 0%,#000000 100%);
background-image: url(/images/solved.png);
background-repeat: no-repeat;
background-position: left;
   padding: 6px;
   border: 1px solid #000;
   border-radius: 7px;
}

a.solvedbutton {
   font-family: Arial;
   color: #ffffff;
   font-size: 14px;
font-weight: bold;
}

a.solvedbutton:hover {
background: linear-gradient(to bottom, #ffa659 0%,#ed6136 50%,#ff8000 100%);
}

.notsolvedbutton {
background: linear-gradient(to bottom, #45484d 0%,#000000 100%);
background-image: url(/images/notsolved.png);
background-repeat: no-repeat;
background-position: left;
   padding: 6px;
   border: 1px solid #000;
   border-radius: 7px;
}

a.notsolvedbutton {
   font-family: Arial;
   color: #ffffff;
   font-size: 14px;
font-weight: bold;

}
a.notsolvedbutton:hover {
background: linear-gradient(to bottom, #ffa659 0%,#ed6136 50%,#ff8000 100%);
}


lg
lenox
hi!
könnte sein da du da mit falschen datein werkst?
es gibt im images eine solved.png für den kleinen haken neben dem fred. die beiden die neben antwort auftauchen sind in images/deutsch_du und so weiter und funzen bei mir nur als .gif.
Habe die neuen solved Icons ja extra auf den Server geladen da ist es ja egal ob ich die aus dem Image>deutsch_du ordner nehme oder meine. Habe es aber trotzdem auch mal mit dem /images/deutsch_du/solved.gif probiert was aber genau so war.

Habe den Button nun eigentlich so wie ich wollte das einzige was noch nicht ganz passt ist das das Icon hinter dem Hover verschwindet wenn man mit der Maus drüber fährt.
[attachment=11881][attachment=11882]

Hier mal der neue Code jemand eine Idee wie ich das mit dem Hover hin bekomme

Code:
}
.solvedbutton {
background: #000000;
background-image: url(/images/solved.png);
background-repeat: no-repeat;
background-position: left;
display: inline-block;
padding: 4px 8px;
margin: 2px 2px 6px 2px;
border: 1px solid #FF8000;
   border-radius: 7px;
padding-left: 20px;
}

a.solvedbutton {
   font-family: Arial;
   color: #ffffff;
   font-size: 14px;
font-weight: bold;
}

a.solvedbutton:hover {
background: linear-gradient(to bottom, #ffa659 0%,#ed6136 50%,#ff8000 100%);
text-decoration: none;
}
 
.notsolvedbutton {
background: #000000;
   background-image: url(/images/notsolved.png);
background-repeat: no-repeat;
background-position: left;
display: inline-block;
padding: 4px 8px;
margin: 2px 2px 6px 2px;
   border: 1px solid #FF8000;
   border-radius: 7px;
padding-left: 20px;
}

a.notsolvedbutton {
   font-family: Arial;
   color: #ffffff;
   font-size: 14px;
font-weight: bold;
}
a.notsolvedbutton:hover  {
background: linear-gradient(to bottom, #ffa659 0%,#ed6136 50%,#ff8000 100%);
text-decoration: none;
}
Guten Morgen,

ein schönes Tool. Aber kann man irgendwo auch einstellen, welche Benutzergruppe das benutzen darf?

Ich habe in den Gruppenberechtigungen leider nichts gefunden.
Meine User markieren alles mögliche als erledigt, wo es nicht sinnvoll ist.

Ich hätte es gern als Moderationstool genutzt. Leider kann aber nur als erledigt markeiren, wer den Thread eröffnet hat und nicht mal ein Mod oder Admin.
Einzig der Superadmin kann das auch in den Threads tun, die er nicht erstellt hat.
Seiten: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16