Fix top background

This commit is contained in:
Georgy Litvinov 2021-04-01 00:39:32 +02:00
parent e8dccba537
commit 5499a1307f
2 changed files with 12 additions and 6 deletions

View file

@ -34,9 +34,7 @@ body {
min-width: 700px;
max-width: 1920px;
width: 100%;
background-size: 100%;
background: url(../images/header-image.png) center 0 no-repeat;
height: 200px;
height: 200px;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
@ -508,10 +506,17 @@ hr.formDivider {
/* HEADER ------> */
#branding {
position: relative;
width: 80%;
width: 100%;
height: 200px;
margin: 0 auto;
padding: 0px 0px 0px 0px;
background-size: 100%;
background-image: url(../images/header-image.png);
background-position: center;
background-repeat: no-repeat;
}
#topArea{
width: 90%;
}
/* BRANDING ------> */
h1.vivo-logo {

View file

@ -1,7 +1,7 @@
<#-- $This file is distributed under the terms of the license in LICENSE$ -->
<header id="branding" role="banner">
<div id="topArea">
<h1 class="vivo-logo"><a title="${i18n().identity_title}" href="${urls.home}"><span class="displace">${siteName}</span></a></h1>
<#-- Since we are using a graphic text for the tagline, we won't render ${siteTagline}
<#if siteTagline?has_content>
@ -50,4 +50,5 @@
</ul>
</nav>
</header>
</div>
</header>