• Resolved mswenson2

    (@mswenson2)


    I would like to be able to have a title bar on each page that is not the home page. How would I be able to set up title bars the have the page name on them that are also about 100px in height? I would also like the color of the bar to be #b20e24 and not faded out like the home page banner is.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @mswenson2,

    When you say a title bar, what exactly do you mean? Do you mean a bar above the navigation, at the top of the web page?

    Thread Starter mswenson2

    (@mswenson2)

    So this would be an example of a page I want to change http://edufund.westmusic.com/new-site/funding-resources/. I changed the featured image to be a bar that is #b20e24 in color. What I want to do is change that space to be 100px tall and still have the words Funding Resources be centered in the bar. I want to do this for all pages except for the home page. I also want to get rid of the faded out color on the #b20e24 colored bar so you see the full intense color

    Hi,

    You’re going to have to write some custom CSS to get this done. You can target the .hero element through your CSS to apply the styles you need.

    
    .hero {
      height: 100px;
    }
    
    .hero .hero-inner {
      padding: 0;
    }
    
    .hero .page-title {
      font-size: 30px;
    }
    
    body.home .hero {
      height: auto;
    }
    
    body.home .hero .hero-inner {
      padding: 4%;
    }
    

    You can add that to the ‘Additional CSS’ section of the customizer. That should be a solid starting point, but you may need to tweak the styles further for your needs or for mobile devices.

    Thread Starter mswenson2

    (@mswenson2)

    This worked out perfectly thanks!

    @mswenson2 Awesome, thanks so much for keeping us in the loop!

    Have a wonderful weekend!

    Evan

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘change header on different pages’ is closed to new replies.