Hi
I’ve come back to Rapidweaver recently and upgraded from RW6 to RW 8 after spending a lot of time in years gone by on this forum.
I like the Engineer theme but would like to be able adjust the banner height.
Can anyone help me ? Is there a simple CSS solution?
I’ve seen how to do this with Mountain theme.
Thanks Chuck. Yes I can see how to hide the banner, on Master settings and on each page individually as well. How would I then add my own though? Sorry if I’ve missed something obvious.
Thanks Doug. I’ll do that. I’m trying with some CSS gleaned from answers to similar questions for other themes, appreciate the help i’ll upload once its a bit more sorted.
Heres why, ton this theme the container that positions the title and slogan uses absolute positioning. That means any padding on the child element won’t affect the position of the title.
In this theme, this is the code the effects the title and slogan:
Now because it is set to a percent on the bottom, It should adjust OK at different screen heights. You could, of course, change that value to anything you like:
.hero-content {
bottom: 15%;
}
and if you wanted to change that for just Medium (≥768px) and larger screens then you would wrap the code in a media query like this: