Düzenli Alt Bölümler Smf 2.0

Hello, welcome back!

We want to bring together those who have knowledge and those who need it, to bring together people with different perspectives so that they can understand each other better and to enable everyone to share their knowledge.

  • Sitemiz Bir Webmaster forumu ve tartışma platformu dur webmaster forumu dışındaki konular yasaktır direkt silinecektir.
  • Our site is a Webmaster forum and discussion platform. Topics outside the webmaster forum are prohibited and will be deleted immediately.

orhan

Moderator
Joined
Dec 5, 2018
Messages
466
Reaction score
96
Points
28
Bugün sizlere mod kulanmadan düzenli alt bölümler yapmayi göstericem

7bChbxq.jpg


ADIM: 1
Not: Eğer zaten Font-Awesome yüklüyse, bu adımı atlayın. Dosya aç: Tema / Index.template.php kapanış </ head> etiketi bulun. Öncesine ekle:

Code:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">

ADIM: 2
Dosya aç: Tema / css / index.css Sonuna ekle:

Code:
/* Enter Pretty Sub Boards */
.children.windowbg > a,.children.windowbg > strong {float: left;width: 30%;}
.subtxt {display: block;font-weight: bold;padding-bottom: 5px;}
.subtxt::before {content: "\f115";}
.children.windowbg > a::before, .children.windowbg > strong::before {content: "\f114";}
.children.windowbg > a::before, .children.windowbg > strong::before,.subtxt::before {
  font-family: fontawesome !important; font-weight: 100; padding-right: 5px; display: inline-block;}
.children.windowbg {padding: 0.8em 0.7em;}
/* End Pretty Sub Boards */

ADIM: 3
Dosya aç:
Tema / BoardIndex.template.php Not: Eğer / BoardIndex.template.php varsayılan temanizda yoksa
defult temanin kini kopyalayip temaniza ekleyin ve sonra bu adımı uygulayın. Kodlarda Arayin : "children windowbg"
bu kodlari bulacaksınız:

Code:
 <tr id="board_', $board['id'], '_children">
 <td colspan="3" class="children windowbg">
 <strong>', $txt['parent_boards'], '</strong> ', implode(', ', $children), '
 </td>
 </tr>';

Değiştirin

Code:
 <tr id="board_', $board['id'], '_children">
 <td colspan="3" class="children windowbg">
 <span class="subtxt">', $txt['parent_boards'], '</span> ', implode($children), '
 </td>
 </tr>';
ADIM: 4 (İSTEĞE BAĞLI)

"Alt Bölümler" yazisini Değişmek isteyen kişiler için: Dosya aç: / Temalar / default / languages / index.english.php ara :
Code:
$txt['parent_boards'] = 'Child Boards';
İle değiştirin:
Code:
$txt['parent_boards'] = 'istediginizi yazin:';
Ek Notlar:

Adım 2 kodlar da düzenleme css: Eğer 2 sütun Alt bölumleri düzenini değişmek istiyorsanız "width: 30%;" "ile :% 50 arasinda genişliği ayarlayin ; ". Eğer daha fazla sütun istiyorsanız, sütun sayısını elde edene kadar sonra konum yüzdesini azaltin.
 
Hocam kodları bulamadım. Sanırım eski sürümüne göre yazılmış. Yenileme yapabilir misiniz?
 
Merhaba bir değişiklik yok kodlarda nerde taklidiniz?

cihilder.png


 
Back
Top Bottom