• Hello,

    By default, the title of the website at the top of the menu appears on the left of the screen. Which looks a bit weird (https://dietetique-comportementale.com)
    Is it possible to center it?

    I also wonder incidentally if this title can be different from the one that shows up on top of the main image under the menu.

    Thanks!

    • This topic was modified 7 years, 8 months ago by mikodiet.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello there,

    Add the following custom CSS to customize-> Additional CSS

    .navbar-default .navbar-brand {
        text-align: center;
        float: none;
    }
    @media (min-width: 768px){
    .navbar-header {
        float: none;
        text-align: center;
    }

    Hope it helps and let me know if you require any further assistance.

    Thread Starter mikodiet

    (@mikodiet)

    Hello,

    Thanks a lot for your help!
    There just seems to be a missing } but I have no idea where to place it.
    Thanks…

    Hi @mikodiet,

    Yes, there is a } missing. Add it at the bottom of the code from @poonam9 like this:

    .navbar-default .navbar-brand {
    text-align: center;
    float: none;
    }
    @media (min-width: 768px){
    .navbar-header {
    float: none;
    text-align: center;
    }
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Center website title ?’ is closed to new replies.