Adding second tagline

  • I can’t for the life of me figure out how to add a second tagline. I have the custom design upgrade but I’m not sure what to edit. Underneath the current tagline I want one to read “Developer: JES Corporation – A Spencer Family Company”

    The blog I need help with is: (visible only to logged in users)

  • Add this, it should do what you need:

    .site-description:after {
        content: "\A Developer: JES Corporation - A Spencer Family Company";
        white-space: pre;
    }

    (the \A creates a line-break, and the white-space attribute maintains it, so both those items are necessary.)

  • The \A would create a line break if there was more text before it. Use this instead:

    .site-description:after {
    content: "Developer: JES Corporation - A Spencer Family Company";
    display: block;
    }

    Note: in the future make sure you post CSS questions in the CSS form, not the Support forum.

  • @justpi, thanks for that. It did work with the existing site description, I tested it. But I like yours better!

  • The topic ‘Adding second tagline’ is closed to new replies.