في هذا الشرح سنتعرف على كيفية
للكلمات
للمواضيع كما هو مبين في الصورة التالية
نقوم أولا بإدراج الكود التالي في ملف
المنتدى
CSS
.mytag {
background: #2E86C1;
border-radius: 3px 0 0 3px;
color: #FFfffF;
display: inline-block;
height: 20px;
line-height: 20px;
padding: 0 15px 0px 23px;
position: relative;
margin: 0;
text-decoration: none;
transition: color 0.2s;
border-radius: 7px;
}
.mytag::before {
background: #fff;
border-radius: 10px;
box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
content: '';
height: 6px;
left: 10px;
position: absolute;
width: 6px;
top: 7px;
}
.mytag::after {
background: #fff;
border-bottom: 10px solid transparent;
border-right: 10px solid #2E86C1;
border-top: 10px solid transparent;
content: '';
position: absolute;
left: 0;
top: 0;
}
بعد ذلك نقوم بالتعديل على قالب show_tags_topicنبحث عن الكود التالي
CODE
{$tags['tag']}
ونستبدله بالكود التالي
Html
span class="mytag">{$tags['tag']}</span>
نلاحظ بعد ذلك التغيير
أرجو أن ينال الشرح إستحسانكم