Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #61807
    Brian
    Participant

    Hi. I’d like to edit my site title and tagline (and maybe my menu as well) to see what they would look like when centered.

    I’d also like to divide my tagline into 2 separate lines, if that’s possible.

    I’m working here: http://029.b2b.myftpupload.com/

    I’m not sure if my Custom CSS option is working? I tried entering a few lines of code there and nothing happened.

    Please advise.

    #61866
    Sakin
    Keymaster

    @Brian:
    1. You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box to center the site title and tagline.

    #site-branding {
        display: block;
        text-align: center;
        width: 100%;
    }
    #site-header { 
        width: 100%; 
    }

    2. There is no option to break the tagline in two separate lines. There is only one option to break the content with the fixed width. You can try adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box

    .site-description {
        display: block;
        margin: 0 auto;
        width: 220px;
    }
    #61918
    Brian
    Participant

    Thanks, I’ll give these both a try!

    #61935
    Brian
    Participant

    Everything worked. Thanks!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Custom CSS for Site Title, Tagline, and Menu’ is closed to new replies.