• Resolved mjbcomp

    (@mjbcomp)


    After upgrading to the latest theme version both my Site Title and Tagline are word wrapping. There doesn’t appear to be any way to change the width.

    Is there some code i can enter in the ‘Additional CSS’ section that will cause the Site Title and Tagline not to wordwrap?

    Help please.

    • This topic was modified 1 year, 4 months ago by mjbcomp.
    • This topic was modified 1 year, 4 months ago by mjbcomp.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter mjbcomp

    (@mjbcomp)

    Upon further investigation i found the problem is based on the ‘flex-basis: 30%’. I need this to be 100% and it will fix the issue.

    See attached image of page inspection.

    • This reply was modified 1 year, 4 months ago by mjbcomp.
    • This reply was modified 1 year, 4 months ago by mjbcomp.
    Thread Starter mjbcomp

    (@mjbcomp)

    I solved the problem myself by adding this code in ‘Additional CSS’:

    .cm-header-col-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -ms-flex-preferred-size: 30%;
    flex-basis: 40%; <— changing this from 30% to 40% solved the word wrap issue
    }

    Hi @mjbcomp,

    Glad to hear that the issue has been fixed. Let me know of any other issues in the future and I will be back.

    Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Site Title & Tagline Wordwrap’ is closed to new replies.