Problems Centering logo, navigation and featured slider for Unite theme

Hi there,

I want to center the heading and the nav bar over the body content. I also want to make sure that the carousel on the home page is centered. Can you help point me in the right direction with this? I’ve picked up the tips from the forum, but what have I missed here?

Thank you!

I think that a better idea would be to just make image larger. You can do that by adding this simple CSS to appearance >> Theme Options >> Other >> Custom CSS.

.carousel-inner .item a img, 
.carousel-inner .item img {
  width: 100%;
}

Now navigation will be a bit too much on left, but you can change that in your existing code that you have added earlier. It should look something like this:

@media (min-width: 768px) {
  .navbar-nav {
    float: none;
    padding: auto;
  }
  .nav {
    padding-left: 20%;
  }
}

Let me know if you need any further assistance with this.