- Posts: 1
- Thank you received: 0
Random banner on homepage and suppages
-
Lars
Active member - Topic Author
- New Member
Less
More
4 years 6 months ago #47739
by Lars
Random banner on homepage and suppages was created by Lars
Hello there
Is it possible to disable the "random banner area" on the homepage and the subpages anyhow?
Thank you in advance for your feedback.
Best regards
Lars
Is it possible to disable the "random banner area" on the homepage and the subpages anyhow?
Thank you in advance for your feedback.
Best regards
Lars
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6744
- Thank you received: 716
4 years 6 months ago #47740
by milos
Replied by milos on topic Random banner on homepage and suppages
Hi Lars,
In Extensions > Templates > Hot Natura > Custom > CSS you will find this:
Change it with this and the random background images will not be displayed. Instead, there will be only a background color (you can change #000000 if you want a different color.
You can reduce the header's height if you reduce values here:
and here:
Thanks,
Milos
In Extensions > Templates > Hot Natura > Custom > CSS you will find this:
Code:
.introrow .sparky_container.random1 {
background: url(../images/background1.jpg);
background-size: cover;
}
.introrow .sparky_container.random2 {
background: url(../images/background2.jpg);
background-size: cover;
}
.introrow .sparky_container.random3 {
background: url(../images/background3.jpg);
background-size: cover;
}
.introrow .sparky_container.random4 {
background: url(../images/background4.jpg);
background-size: cover;
}
.introrow .sparky_container.random5 {
background: url(../images/background5.jpg);
background-size: cover;
}
.introrow .sparky_container.random6 {
background: url(../images/background6.jpg);
background-size: cover;
}
.introrow .sparky_container.random7 {
background: url(../images/background7.jpg);
background-size: cover;
}
Change it with this and the random background images will not be displayed. Instead, there will be only a background color (you can change #000000 if you want a different color.
Code:
.introrow .sparky_container.random1,
.introrow .sparky_container.random2,
.introrow .sparky_container.random3,
.introrow .sparky_container.random4,
.introrow .sparky_container.random5,
.introrow .sparky_container.random6,
.introrow .sparky_container.random7 {
background: #000000;
}
You can reduce the header's height if you reduce values here:
Code:
.sparky_inner .introrow .sparky_container {
min-height: 400px;
}
and here:
Code:
.sparky_inner .introrow .mp_header2 {
padding-top: 250px;
}
Thanks,
Milos
Please Log in to join the conversation.
Time to create page: 0.153 seconds