News:

SMF 2.1.4 has been released! Take it for a spin! Read more.

Main Menu

Konu başlığına yazı ekleme

Started by cepxz, March 07, 2015, 06:05:00 PM

Previous topic - Next topic

cepxz



Topics yazısının önüne nasıl yazı ekleyebilirim?

hangi template.php dosyasından düzenlemem gerekiyor acaba?

Antes


cepxz

Hocam ben sabit konuların başına css ile şekillendirdiğim SABİT yazısını koymak istiyorum fakat bulamadım nereye yazacağımı. bana biraz daha yardımcı olabilir misiniz

Antes

MessageIndex.template dosyasında

Code (Bul) Select
', $topic['is_sticky'] ? '<strong>' : '',
Code (Değiştir) Select
', $topic['is_sticky'] ? '<span class="sabit_css"></span><strong>' : '',

cepxz

Hocam öyle kod yok. şu şekilde;

<div class="message_index_title">
                        ', $topic['new'] && $context['user']['is_logged'] ? '<a href="' . $topic['new_href'] . '" id="newicon' . $topic['first_post']['id'] . '"><span class="new_posts">' . $txt['new'] . '</span></a>' : '', '
                        <span class="preview', $topic['is_sticky'] ? 'bold_text' : '', '" title=" ', $topic[(empty($modSettings['message_index_preview_first']) ? 'last_post' : 'first_post')]['preview'], '">
                           <span id="msg_', $topic['first_post']['id'], '">', $topic['first_post']['link'], ($context['can_approve_posts'] && !$topic['approved'] ? '&nbsp;<em>(' . $txt['awaiting_approval'] . ')</em>' : ''), '</span>
                        </span>
                     </div>

Antes

Code (Bul) Select
$topic['is_sticky'] ? 'bold_text'
Code (Değiştir) Select
$topic['is_sticky'] ? 'sabit_css bold_text'

Code (CSS) Select
.sabit_css:before, sabit_css::before {
content: "Sabit ";
}

cepxz


Advertisement: