I had another question, so I would really appreciate if someone could help me out. I wanted to remove the banner from specific pages on my Engineer theme. I said hide banner, but the image still is there. I am new to Rapidweaver, so I was wondering if anyone has any CSS code that would remove the banner image itself, but not the menu.
(I have tried this code, but then my menu disappears, which I can’t really have with my website.)
Without seeing a page where it’s not working, there’s no way to know what code will work. To get that code, I needed to create a new project using the Engineer theme and inspect the page to determine which CSS selector would work.
Since it’s working in a new, test project, then it’s likely something you’ve added to the project.
I think I may have found the issue. For my pages, I have changed the Page-Specific Theme to Climate, which is probably the reason why your code is not working, I’m sorry.
Would you know any CSS that would work for the Climate specific page-theme?
Was just wondering about something similar and testing out RW8 and Engineer. Is there a way to use CSS to reduce the size of the banner on specific pages? I like it on the ‘home’ page but would either remove (as you’ve show here) or, ideally, dramatically reduce the size on other pages. It’s something that doesn’t seem possible in any of the recent built-in templates. Many thanks for any advice you might be able to offer.
The CSS below will change the banner image area to be sized by the content in it rather than being displayed at 100% of the view height (device/browser window). You can place it in the page’s HTML Code - CSS area. It is using padding to adjust how much space there is above and below the title and slogan. Adjust to your liking.
/* Enginer Theme - Banner image sized by content */
.hero {
height: auto;
}
.hero-content.container {
height: auto;
padding-top: 50px; /* space above the title */
padding-bottom: 50px; /* space below the slogan */
}
.hero-background {
height: 100%;
}