szymme
Member
Hi lovely Xenforo Community,
I have a Theme from DohTheme. They have beautiful themes but the ticket support is bad.
I want to show the header message, which is defined the height 550px, only on one page. (Starting Page- which is on my site EWR-Porta)
In the Dohtheme settings is it only possible to hide it for all or nothing.
My website https://bullboss.de
This is defined in the template extra.less:
I know from Xenforo 2conditionals this one
Is is possible with coding to solve this?
Please help.
Love XF2.
Best regards,
Daniel
I have a Theme from DohTheme. They have beautiful themes but the ticket support is bad.
I want to show the header message, which is defined the height 550px, only on one page. (Starting Page- which is on my site EWR-Porta)
In the Dohtheme settings is it only possible to hide it for all or nothing.
My website https://bullboss.de
This is defined in the template extra.less:
Code:
.header--proxy {
position: relative;
<xf:if is="property('dt_guest_message')">
height: 550px;
<xf:else />
height: 285px;
</xf:if>
background: transparent url('{{ property('dt_mere_header_bg') }}') no-repeat center/cover;
background-attachment: fixed;
margin-top: -170px;
z-index: 2;
}
I know from Xenforo 2conditionals this one
Code:
<xf:if is="$template == 'X'">
Show content..
</xf:if>
Is is possible with coding to solve this?
Please help.
Love XF2.
Best regards,
Daniel
Last edited: