
Image Upload by dmzx-web.net
Image Upload by dmzx-web.net
In template viewforum_body find this:
Code: Select all
<!-- IF S_DISPLAY_POST_INFO or .pagination or TOTAL_POSTS or TOTAL_TOPICS -->
<div class="action-bar bar-top">
<!-- IF not S_IS_BOT and S_DISPLAY_POST_INFO -->
<!-- EVENT viewforum_buttons_top_before -->
<a href="{U_POST_NEW_TOPIC}" class="button" title="<!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF -->">
<!-- IF S_IS_LOCKED -->
<span>{L_BUTTON_FORUM_LOCKED}</span> <i class="icon fa-lock fa-fw" aria-hidden="true"></i>
<!-- ELSE -->
<span>{L_BUTTON_NEW_TOPIC}</span> <i class="icon fa-pencil fa-fw" aria-hidden="true"></i>
<!-- ENDIF -->
</a>
<!-- EVENT viewforum_buttons_top_after -->
<!-- ENDIF -->
Code: Select all
<!-- IF S_DISPLAY_POST_INFO or .pagination or TOTAL_POSTS or TOTAL_TOPICS -->
<div class="action-bar bar-top">
<!-- IF not S_IS_BOT and S_DISPLAY_POST_INFO -->
<!-- EVENT viewforum_buttons_top_before -->
<!-- IF S_IS_LOCKED -->
<a href="{U_POST_NEW_TOPIC}" class="button" id="lock">
<span>{L_BUTTON_FORUM_LOCKED}</span> <i class="icon fa-lock fa-fw" aria-hidden="true"></i>
</a>
<!-- ELSE -->
<a href="{U_POST_NEW_TOPIC}" class="button" id="new">
<span>{L_BUTTON_NEW_TOPIC}</span> <i class="icon fa-pencil fa-fw" aria-hidden="true"></i>
</a>
<!-- ENDIF -->
Code: Select all
<div class="action-bar bar-bottom">
<!-- IF not S_IS_BOT and S_DISPLAY_POST_INFO -->
<!-- EVENT viewforum_buttons_bottom_before -->
<a href="{U_POST_NEW_TOPIC}" class="button" title="<!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF -->">
<!-- IF S_IS_LOCKED -->
<span>{L_BUTTON_FORUM_LOCKED}</span> <i class="icon fa-lock fa-fw" aria-hidden="true"></i>
<!-- ELSE -->
<span>{L_BUTTON_NEW_TOPIC}</span> <i class="icon fa-pencil fa-fw" aria-hidden="true"></i>
<!-- ENDIF -->
</a>
<!-- EVENT viewforum_buttons_bottom_after -->
<!-- ENDIF -->
<div class="action-bar bar-bottom">
<!-- IF not S_IS_BOT and S_DISPLAY_POST_INFO -->
<!-- EVENT viewforum_buttons_bottom_before -->
<!-- IF S_IS_LOCKED -->
<a href="{U_POST_NEW_TOPIC}" class="button" id="lock">
<span>{L_BUTTON_FORUM_LOCKED}</span> <i class="icon fa-lock fa-fw" aria-hidden="true"></i>
</a>
<!-- ELSE -->
<a href="{U_POST_NEW_TOPIC}" class="button" id="new">
<span>{L_BUTTON_NEW_TOPIC}</span> <i class="icon fa-pencil fa-fw" aria-hidden="true"></i>
</a>
<!-- ENDIF -->
Next step: in viewtopic_body find:
Code: Select all
<div class="action-bar bar-top">
<!-- EVENT viewtopic_buttons_top_before -->
<!-- IF not S_IS_BOT and S_DISPLAY_REPLY_INFO -->
<a href="{U_POST_REPLY_TOPIC}" class="button" title="<!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF -->">
<!-- IF S_IS_LOCKED -->
<span>{L_BUTTON_TOPIC_LOCKED}</span> <i class="icon fa-lock fa-fw" aria-hidden="true"></i>
<!-- ELSE -->
<span>{L_BUTTON_POST_REPLY}</span> <i class="icon fa-reply fa-fw" aria-hidden="true"></i>
<!-- ENDIF -->
</a>
<!-- ENDIF -->
Code: Select all
<div class="action-bar bar-top">
<!-- EVENT viewtopic_buttons_top_before -->
<!-- IF S_IS_LOCKED -->
<a href="{U_POST_REPLY_TOPIC}" class="button" id="lock">
<span>{L_BUTTON_TOPIC_LOCKED}</span> <i class="icon fa-lock fa-fw" aria-hidden="true"></i>
</a>
<!-- ELSE -->
<a href="{U_POST_REPLY_TOPIC}" class="button" id="reply">
<span>{L_BUTTON_POST_REPLY}</span> <i class="icon fa-reply fa-fw" aria-hidden="true"></i>
</a>
<!-- ENDIF -->
<a href="{U_POST_NEW_TOPIC}" class="button" id="new">
<span>{L_BUTTON_NEW_TOPIC}</span> <i class="icon fa-pencil fa-fw" aria-hidden="true"></i>
</a>
Code: Select all
<div class="action-bar bar-bottom">
<!-- EVENT viewtopic_buttons_bottom_before -->
<!-- IF not S_IS_BOT and S_DISPLAY_REPLY_INFO -->
<a href="{U_POST_REPLY_TOPIC}" class="button" title="<!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF -->">
<!-- IF S_IS_LOCKED -->
<span>{L_BUTTON_TOPIC_LOCKED}</span> <i class="icon fa-lock fa-fw" aria-hidden="true"></i>
<!-- ELSE -->
<span>{L_BUTTON_POST_REPLY}</span> <i class="icon fa-reply fa-fw" aria-hidden="true"></i>
<!-- ENDIF -->
</a>
<!-- ENDIF -->
Code: Select all
<div class="action-bar bar-bottom">
<!-- EVENT viewtopic_buttons_bottom_before -->
<!-- IF S_IS_LOCKED -->
<a href="{U_POST_REPLY_TOPIC}" class="button" id="lock">
<span>{L_BUTTON_TOPIC_LOCKED}</span> <i class="icon fa-lock fa-fw" aria-hidden="true"></i>
</a>
<!-- ELSE -->
<a href="{U_POST_REPLY_TOPIC}" class="button" id="reply">
<span>{L_BUTTON_POST_REPLY}</span> <i class="icon fa-reply fa-fw" aria-hidden="true"></i>
</a>
<!-- ENDIF -->
<a href="{U_POST_NEW_TOPIC}" class="button" id="new">
<span>{L_BUTTON_NEW_TOPIC}</span> <i class="icon fa-pencil fa-fw" aria-hidden="true"></i>
</a>
Code: Select all
#new, #lock, #reply{
color: #fff;
font-size: 12px!important;
font-family: tahoma;
font-weight: 500;
padding: 6px 12px;
min-width: 100px;
}
#new{
background: #5aa527;
border: 1px solid #3f7a17;
box-shadow: 0px 1px 0px #9bef62 inset;
}
#new:hover{
text-decoration: none!important;
text-shadow: none!important;
background: #64c124;
box-shadow: 0px 1px 0px #a5ff68 inset;
}
#new i, #new i:hover{
color: #fff!important;
}
#reply{
background: #057eaf;
border: 1px solid #01668e;
box-shadow: 0px 1px 0px #2bb8f2 inset;
}
#reply:hover{
background: #058fc6;
text-decoration: none!important;
text-shadow: none!important;
}
#reply i, #reply i:hover{
color: #fff!important;
}
#lock{
background: #cc0e0e;
border: 1px solid #930101;
box-shadow: 0px 1px 0px #ed3636 inset;
}
#lock:hover{
background: #e50d0d;
text-decoration: none!important;
text-shadow: none!important;
}
#lock i, #lock i:hover{
color: #fff!important;
}