externer Link
Da sieht ihr vllt was ich meine das der text zu weit in der Mitte ist
Hoffentlich Könnt ihr mir helfen Gruß Pako
betroffene Homepage: grafix4gamers.de
Hier mal Der Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | <!-- @name IlchBB Forum @version 3.1 @author Florian Koerner --> <!-- Funktionen fuer Beitrag melden und Danke-Funktion --> <script type="text/javascript"> var reportTopicID = 0; var reportPostID = 0; var reportPostPage = 0; function reportPost(tid,pid,page) { reportTopicID = tid; reportPostID = pid; reportPostPage = page; $('#reportPost').dialog('open'); }; function ratePost(pid) { $.ajax({ type: 'POST', url: 'index.php?forum-showposts-ratepost', data: { pid: pid }, success: function(response) { if (response == '') { rate = $("#rate_"+pid) rate.text(parseInt(rate.text())+1); } else { alert(response); } } }); } $(function() { var rG = $("#reportGrounds"); $("#reportPost").dialog({ autoOpen: false, width: 350, modal: true, resizable: false, buttons: { 'Melden': function() { $.ajax({ type: 'POST', url: 'index.php?forum-showposts-reportpost', data: { tid: reportTopicID, pid: reportPostID, page: reportPostPage, grounds: rG.val() }, success: function(response) { alert(response); rG.val(''); } }); $(this).dialog('close'); }, 'Abbrechen': function() { $(this).dialog('close'); }} }); }); </script> <!-- Div fuer Beitrag melden --> <div class="forum" id="reportPost" title="Begründung"> <textarea rows="4" name="reportGrounds" id="reportGrounds" style="width: 300px;"></textarea> </div> <h6>{TOPICNAME}</h6> {ANTWORTEN} <div style="float: right;"> {SITELINK} </div> <br style="clear: both;" /> {EXPLODE} <div class="forum ui-corner-all ilchbb_{class}"> <div class="post message"> <div class="text"> <a name="{id}"></a> <span style="float: left;" class="smallfont"> <a href="index.php?forum-showposts-{TID}-p{page}#{id}" title="{STATUS_TITLE}"> <img src="include/images/ilchbb_forum/icon_post_target{STATUS_SRC}.gif" border="0" /> </a> {date} </span> <span style="float: right;"> {report} {delete} {change} {quote} </span> <br style="clear: both;" /> <p>{txt}</p> <p>{sig}</p> </div> </div> <div class="post details"> <div class="text" style="margin: 5px 15px 5px 0px; border-right: 1px solid #666666;"> {online} <a href="index.php?user-details-{erstid}" style="font-weight: bold;">{erst}</a><br /> {rang} {avatar} <p class="smallfont"> {posts}{details} </p> <p> {pm}{email}{www}{icq}{msn}{yahoo} </p> {_if_{rate_allow}=='1'} <p style="font-size: .8em; padding-top: 5px;"> <a href="javascript:void(0);" onClick="ratePost({id});" title="Finde ich gut" class="icon rate_good" style="float: left;"></a> <strong id="rate_{id}">{rate}</strong> Mitglieder finden den Beitrag gut. <br style="clear: left;" /> </p> {/_endif} </div> </div> <br style="clear: both;" /> <div style="text-align: right;"> <a href="#"><img src="include/images/ilchbb_forum/icon_back_top.gif" border="0" /></a> </div> </div> {EXPLODE} {ANTWORTEN} <div style="float: right;"> {SITELINK} </div> <br style="clear: both;" /> <br /> {EXPLODE} <div class="forum ui-corner-all" style="background-color: #DCDDE2; text-align: center;"> <a href="javascript:renametopic()">{_lang_rename}</a> , <a href="index.php?forum-edittopic-{tid}-2">{_lang_delete}</a> , <a href="index.php?forum-edittopic-{tid}-3">{_lang_shift}</a> , <a href="index.php?forum-edittopic-{tid}-4-2">{status}</a> , <a href="index.php?forum-edittopic-{tid}-5">{festnorm}</a> <script language="JavaScript" type="text/javascript"> <!-- function renametopic () { var x = prompt ( "Bitte den neuen Namen vom Thema eintragen" , "" ); if ( x ) { document.location.href="index.php?forum-edittopic-{tid}-1=0&newTopic="+x; } } //--> </script> </div> {EXPLODE} <div class="forum ui-corner-all Cmite" style="padding: 5px; background-color: #DCDDE2;"> <div id="qpost"> Schnellantwort </div> <form id="qpost_forum" action="index.php?forum-newpost-{tid}" method="POST" name="form" style="display:none;"> <textarea name="txt" rows="8" cols="50" tabindex="2"></textarea> <div style="text-align: right;"> <input type="submit" name="submit" value="{_lang_formsub}" /> </div> </form> </div> |
Zuletzt modifiziert von Pakozzlocozz am 21.11.2010 - 09:33:36