1. in custom.css find and adujst
Code: Select all
.site_logo {
display: inline-block;
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
max-width: 100%;
height: 65px;
width: 200px;
border-radius: 0px;
background-image: url("./images/phpbb.svg");
}
2. You can adjust the heading in the viewtopic_body.html file and to remove the h1 in the overall_header.html
3. if you want to just remove the avatars add this to custom.css
Code: Select all
.postprofile .avatar-container{
display: none;
}
if you want to remove the whole section add these two declaration to custom.css
Code: Select all
.postprofile{
display: none;
}
.postbody {
width: 100%;
}
4. in custom.css add
Code: Select all
.postbody h3:not(.first) {
display: none;
}
One more thing i spotted thanks to your topic open topbar_header.html find and remove this
line 206 to 221
Code: Select all
{% if S_DISPLAY_PM %}
<li class="rightside" data-skip-responsive="true">
<a href="{{ U_PRIVATEMSGS }}" role="menuitem">
<i class="icon fa-inbox fa-fw" aria-hidden="true"></i><span>{{ lang('PRIVATE_MESSAGES') }} </span><strong class="badge{% if not PRIVATE_MESSAGE_COUNT %} hidden{% endif %}">{{ PRIVATE_MESSAGE_COUNT }}</strong>
</a>
</li>
{% endif %}
{% if S_NOTIFICATIONS_DISPLAY %}
<li class="rightside">
<button class="dropdown-btn"><i class="icon fa-bell fa-fw" aria-hidden="true"></i><span>{{ lang('NOTIFICATIONS') }}</span><strong class="badge{% if not NOTIFICATIONS_COUNT %} hidden{% endif %}">{{ NOTIFICATIONS_COUNT }}</strong>
</button>
<div class="dropdown-containers">
{% INCLUDE 'notification_dropdown.html' %}
</div>
</li>
{% endif %}
and this in custom.css
Code: Select all
.dropdown-containers {
padding: 8px;
position: absolute;
background-color: #f5f5f5;
box-shadow: 0px 2px 8px #808080;
text-align: left;
}
.notification_list ul a:hover{
color: transparent;
}
this one is gonna be at the end of the file.
I'm gonna send a new revision with this removed but if don't want to wait you can do it yourself