- This topic has 3 replies, 2 voices, and was last updated 7 years ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- The topic ‘Switch off the main picture in shop’ is closed to new replies.
Hello, I try to use your theme for a shop. The shop should start on the main page / start page.
For this reason, I would like to switch of the picture above the products.
Is there a solution by css? Regards Carsten http://www.insolvenzinkasso24.de (as test installation)
Add this CSS to either Customize > Additional CSS or to a child theme stylesheet:
.home .main-header {
background-color: transparent;
background-image: none;
min-height: auto !important;
}
.home .header-title {
display: none;
}
In case you are interested, Trusted Pro has additional options to change/remove the background image and the title (e.g. you can have a different display title than the actual page title, or remove it altogether) on a per-page basis.
Thank you very much for your fast reply. Yes, the Header Picture is gone now on the Start-Page.
But I received the below mentioned informations. Is this a problem?
Carsten
No, that’s nothing to worry about. It is because the Additional CSS ‘helper’ expects a value for min-height such as 100px or 20% etc. but we need to use auto !important to make it override the Trusted theme’s javascript that usually adjusts the height of the header area.
You could try min-height: 0 !important
instead although I have not tested this.